mirror of
https://github.com/wczffl-503/OI-Codes.git
synced 2025-05-11 00:30:27 +08:00
22 lines
291 B
C++
22 lines
291 B
C++
#include <iostream>
|
|
#include <iomanip>
|
|
#include <cstring>
|
|
#include <cstdio>
|
|
#include <ctime>
|
|
#include <cmath>
|
|
using namespace std;
|
|
int main(){
|
|
int a,b;
|
|
cin >>a>>b;
|
|
if(a>b){
|
|
cout <<"nO";
|
|
}
|
|
else if(a<b){
|
|
cout <<"yEs";
|
|
}
|
|
else if(a==b){
|
|
cout <<"equal probability";
|
|
}
|
|
return 0;
|
|
}
|