#!/bin/bash

if [ $# == 0 ] 
then
	echo -n 0
elif [ $# == 2 ]
then	
	echo -n 1
else
	echo -n 2
fi
