#include using namespace std; int main(){ int A,B,ok; cin>>A>>B; if((A>25)||(B<23)){ ok=3; }else if(A==B){ ok=2; }else if(A<23){ ok=25-B; }else if(B>25){ ok=A-23; }else{ ok=2-(B-A); } if(ok<0){ ok=0; } cout<