fork download
  1.  
  2.  
  3.  
  4. #include<iostream>
  5. #include <bits/stdc++.h>
  6. using namespace std;
  7. int main (){
  8. int x;
  9. cin >> x;
  10. int a =x/10;
  11. x%=10;
  12. if (a%x==0 || x%a==0)
  13. cout << "YES" << endl;
  14. else
  15. cout << "NO" << endl;
  16. return 0;
  17. }
  18.  
  19.  
  20.  
Success #stdin #stdout 0.01s 5288KB
stdin
Standard input is empty
stdout
NO