Josif_tepe

Untitled

Aug 11th, 2025
221
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(void) {
  4.    
  5.     int a, b;
  6.     scanf("%d%d", &a, &b);
  7.    
  8.     int tmp = a;
  9.    
  10.     a = a * b;
  11.    
  12.     if(tmp > b) {
  13.         b = tmp - b;
  14.     }
  15.    
  16.     printf("%d %d\n", a, b);
  17.     printf("%d", a / b);
  18.    
  19.    
  20.     return 0;
  21. }
  22.  
Advertisement
Add Comment
Please, Sign In to add comment