0_0_29545940_29851.cpp: In function 'void print(T)':
0_0_29545940_29851.cpp:45:147: error: expected primary-expression at end of input
template<class T>inline void print(T x) {if (x<0) {putchar('-');return print(-x);}if (x<10) {putchar('0'+x);return;} print(x/10);putchar(x%10+'0')%
^
0_0_29545940_29851.cpp:45:147: error: expected ';' at end of input
0_0_29545940_29851.cpp:45:147: error: expected '}' at end of input
|