Advertisement
Nishat_Samrin

E. Elementary Arithmetic

Oct 18th, 2019
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. #include<stdio.h>
  2.  
  3. int main () {
  4.  
  5. int A,B,sum;
  6. scanf("%d",&A);
  7. scanf("%d",&B);
  8.  
  9. sum = A+B;
  10.  
  11. printf("%d",sum);
  12.  
  13.  
  14. return 0;
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement