class Nine
{
public static void main(String args[])
{
try
{
int n=Integer.parseInt(args[0]);
int m=Integer.parseInt(args[1]);
System.out.println(n/m);
}
catch(ArithmeticException|NumberFormatException e)
{
System.out.println(e);
}
System.out.println("Shree Radhey");
}
}
SAMPLE OUTPUT: