Advertisement
MOHD_NASIR_UDDIN42

1003-Simple Sum-URI Online Judge.

Apr 21st, 2017
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.14 KB | None | 0 0
  1. #include<stdio.h>
  2. int main()
  3. {
  4.     int A,B,sum;
  5.     scanf("%d %d",&A, &B);
  6.     sum=A + B;
  7.     printf("SOMA = %d\n",sum);
  8.     return 0;
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement