Advertisement
Josif_tepe

Untitled

Nov 11th, 2022
712
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.23 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3.  
  4. int main() {
  5.     int x;
  6.     int y;
  7.    
  8.     scanf("%d", &x);
  9.     scanf("%d", &y);
  10.    
  11.     printf("%d\n", x + y);
  12.     printf("%d", x - y);
  13.    
  14.    
  15.    
  16.    
  17.     return 0;
  18. }
  19.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement