Advertisement
Josif_tepe

Untitled

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