Advertisement
Josif_tepe

Untitled

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