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