fork download
  1. // Level 1 - Contest 2 - Question 4 - Solution 1.
  2. #include <iostream>
  3. #include <cmath>
  4.  
  5. using namespace std;
  6.  
  7. int main()
  8. {
  9. int A = 0;
  10. int B = 0;
  11. cin >> A >> B;
  12.  
  13. if(A >= B)
  14. cout << "Yes" << endl;
  15.  
  16. else
  17. cout << "No" << endl;
  18.  
  19. return 0;
  20. }
Success #stdin #stdout 0s 5308KB
stdin
10 9
stdout
Yes