Advertisement
YouKnowWho07

problem 2

Oct 28th, 2023
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.24 KB | None | 0 0
  1. // Star Plus
  2.  
  3. #include<stdio.h>
  4. #include<string.h>
  5. #include<math.h>
  6. #include<stdlib.h>
  7.  
  8. int main()
  9. {
  10.     long int num1, num2, ans;
  11.     scanf("%ld %ld", &num1, &num2);
  12.  
  13.     ans=num1+num2;
  14.     printf("%ld", ans);
  15.  
  16.     return 0;
  17. }
  18.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement