fork download
  1. #include <iostream>
  2. using namespace std; // consider removing this line in serious projects
  3.  
  4. int main() {
  5.  
  6. int x;
  7. cin>>x;
  8. bool multipleof3 = x%3==0;
  9. bool multipleof5 = x%5==0;
  10. if(multipleof3 && multipleof5){
  11. cout<<"multipleof3&multipleof5\n";
  12. }else {
  13. cout<<"NOT";
  14. }
  15.  
  16.  
  17.  
  18.  
  19.  
  20.  
  21.  
  22.  
  23.  
  24.  
  25.  
  26.  
  27.  
  28.  
  29.  
  30.  
  31.  
  32.  
  33.  
  34. return 0;
  35. }
Success #stdin #stdout 0s 5240KB
stdin
34
72
stdout
NOT