Problem Description
Malu and Doss have play game.The condition to this game is both have to collect bangles from bowl one by one at a given time. Finally the judge have to decide who is the winner based on the count.CODING ARENA
#include <stdio.h>
int main()
{
int a,b;
scanf("%d%d",&a,&b);
if(a>b)
printf("%d",a);
else printf("%d",b);
return 0;
}
Test Case 1
Input (stdin)10 5
Expected Output10
Test Case 2
Input (stdin)4 7
Expected Output7
No comments:
Post a Comment