lina_os

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

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