#include<bits/stdc++.h>
using namespace std;
int x,y;
int main(){
cin>>x>>y;
srand(time(0));
if(x<y){
if(rand()%2==1)cout<<"Y";
else cout<<"y";
if(rand()%2==1)cout<<"E";
else cout<<"e";
if(rand()%2==1)cout<<"S";
else cout<<"s";
}
else if(y<x){
if(rand()%2==1)cout<<"N";
else cout<<"n";
if(rand()%2==1)cout<<"O";
else cout<<"o";
}
else cout<<"equal probability";
return 0;
}
583个字符!