Josif_tepe

Untitled

Jan 11th, 2026
24
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.21 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7.    int x;
  8.    cin >> x;
  9.  
  10.    if (x%10==0){
  11.  
  12.     cout << "0" <<endl;
  13.  
  14.    }
  15.    else {
  16.     cout << 10-(x%10) <<endl;
  17.    }
  18.     return 0;
  19. }
  20.  
  21.  
Advertisement
Add Comment
Please, Sign In to add comment