Thursday, September 13, 2018

BIG


  • 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 Output
    10
  • Test Case 2

    Input (stdin)
    4
    
    7
    
    
    Expected Output
    7

No comments:

Post a Comment