lina_os

mansoura contest #1 E. "karamellaah loves you". ###1 runtimeerrortest3

Dec 21st, 2024 (edited)
15
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. #include <iostream>
  2. #include <iomanip>
  3. #include <algorithm>
  4.  
  5.  
  6. using namespace std;
  7.  
  8. int main() {
  9. ios_base::sync_with_stdio(false), cin.tie(nullptr), cout.tie(nullptr);
  10. char x,y;
  11. cin >> x >> y;
  12. if ( (x-'0') % (y-'0') == 0 ) cout << "YES";
  13. else if ( (y-'0') % (x-'0') == 0 ) cout << "YES";
  14. else cout << "NO";
  15.  
  16.  
  17. return 0;
  18. }
  19.  
Advertisement
Add Comment
Please, Sign In to add comment