#include using namespace std; 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(){ wt_L(1); putchar_unlocked('\n'); return 0; } // cLay varsion 20170428-1 [beta] // --- original code --- // { // wt(1); // }