Saturday, August 18, 2018

CHANGE IT

  • Problem Description

    Mani Working as a professor in ABC college, have to get students three subjects points. So he planned to do one program to implement

    Input

    3 3 5

    CODING ARENA
  • #include <stdio.h>
    int main()
    {
      int a,b,c;
      scanf("%d%d%d",&a,&b,&c);
      printf("%d %d %d",a,b,c);

    return 0;
    }
  • Test Case 1

    Input (stdin)
    3 3 5
    
    
    Expected Output
    3 3 5
  • Test Case 2

    Input (stdin)
    3 3 6
    
    
    Expected Output
    3 3 

No comments:

Post a Comment