rt
inline void print(int x) { if(x>9) print(x/10); putchar((x%10)^48); }
P4095,20 个测试点,没写快写和写了快写只差 3ms。QAQ