Problem C: 游乐场
[Creator : ]
Description
#include <iostream>
using namespace std;
int main() {
int a, b;
cin >> a >> b; // 门票价格为a元,Uim有b元零花钱
if ( ) { // 如果 Uim 钱够(也就是b>=a时)
// 输出 Yes
}
if ( ) { // 如果 Uim 钱不够(也就是b<a时)
// 输出 No
}
return 0;
}
Sample Input Copy
10 20
Sample Output Copy
Yes