Advertisement
Guest User

Untitled

a guest
Feb 28th, 2020
116
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", &a);
  7.     scanf("%d", &b);
  8.     if(a==b){
  9.         printf("%d", a*b);
  10.     }
  11.     else if(a<b){
  12.         printf("%d", b-a);
  13.     }
  14.     else if(a>b){
  15.         printf("%d", a-b);
  16.     }
  17.  
  18.     return 0;
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement