Advertisement
askarulytarlan

Задача C. Тестирующая система

Oct 8th, 2016
176
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. #include <iostream>
  2. #include <fstream>
  3. #include <cmath>
  4. #include <math.h>
  5.  
  6.  
  7. using namespace std;
  8.  
  9. int a, b;
  10.  
  11. int main(int argc, const char * argv[]) {
  12.  
  13. cin >> a >> b;
  14. if (a != 1 && b != 1 ) {
  15. cout << "YES";
  16. }
  17. else if (a == 1 && b == 1){
  18. cout << "YES";
  19. }
  20. else {
  21. cout << "NO";
  22. }
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement