URI 1001

Solution of URI 1001  >> Extremely Basic

  1. #include<stdio.h>
  2. int main()
  3. {
  4. int A,B,X;
  5. scanf("%d%d", &A,&B);
  6. X=A+B;
  7. printf("X = %d\n", X);
  8. return 0;
  9. }

Comments

Popular posts from this blog

URI 2994 Solution

URI 2996 Solution