1243 - Compare
Time Limit : 1 Second
Memory Limit : 128 MB
Submission: 179
Solved: 88
- Description
- Given two numbers: A, B ( 0 <= A, B <= 10^99 ). Output “yes” if A >= B, or “no” if A < B.
- Input
- The input contains several test cases.
Each case with two numbers : A and B . - Output
- “yes” if A >= B, or “no” if A < B.
- sample input
-
1 2 3 2
- sample output
-
no yes
- hint
- source