/* Function to check greater of two numbers */

#include <stdio.h>

void check1(int,int);

main()
{
   int x,y;

   scanf("%d %d",&x,&y);
   check1(x,y);

}

void check1(int a, int b)
{
   if (a>b)
   printf("First number is greater than the other!!\n");
   else
   printf("Second number is greater than the other!!\n");
}
