#pragma GCC optimize ("Ofast") #include using namespace std; inline void rd(double &x){ scanf("%lf",&x); } inline void wt_L(char a){ putchar_unlocked(a); } inline void wt_L(int x){ char f[10]; int m=0, s=0; if(x<0){ m=1; x=-x; } while(x){ f[s++]=x%10; x/=10; } if(!s){ f[s++]=0; } if(m){ putchar_unlocked('-'); } while(s--){ putchar_unlocked(f[s]+'0'); } } int main(){ double A, B; rd(A); rd(B); if(B/A < 80){ wt_L(1); wt_L('\n'); } else{ wt_L(2); wt_L('\n'); } return 0; } // cLay varsion 20190820-1 // --- original code --- // { // double A, B; // rd(A,B); // wt(if[B/A < 80, 1, 2]); // }