0_0_18383135_11735.cpp: In function 'bool Read(K&)':
0_0_18383135_11735.cpp:12:20: error: there are no arguments to 'getchar_unlocked' that depend on a template parameter, so a declaration of 'getchar_unlocked' must be available [-fpermissive]
char c = getchar();
^
0_0_18383135_11735.cpp:12:20: note: (if you use '-fpermissive', G++ will accept your code, but allowing the use of an undeclared name is deprecated)
0_0_18383135_11735.cpp:13:46: error: there are no arguments to 'getchar_unlocked' that depend on a template parameter, so a declaration of 'getchar_unlocked' must be available [-fpermissive]
for(in = 0;c < '0' || c > '9'; c = getchar()) if(c == EOF) return false;
^
0_0_18383135_11735.cpp:14:44: error: there are no arguments to 'getchar_unlocked' that depend on a template parameter, so a declaration of 'getchar_unlocked' must be available [-fpermissive]
for( ; c >= '0' && c <= '9'; c = getchar()) in = in * 10 + c - '0';
^
0_0_18383135_11735.cpp: In function 'void Write(K)':
0_0_18383135_11735.cpp:25:39: error: there are no arguments to 'putchar_unlocked' that depend on a template parameter, so a declaration of 'putchar_unlocked' must be available [-fpermissive]
while(top) putchar(fout[top--] + '0');
^
0_0_18383135_11735.cpp:26:15: error: there are no arguments to 'putchar_unlocked' that depend on a template parameter, so a declaration of 'putchar_unlocked' must be available [-fpermissive]
putchar('\n');
^
0_0_18383135_11735.cpp: In instantiation of 'void Write(K) [with K = __int128]':
0_0_18383135_11735.cpp:129:14: required from here
0_0_18383135_11735.cpp:25:39: error: 'putchar_unlocked' was not declared in this scope
while(top) putchar(fout[top--] + '0');
^
0_0_18383135_11735.cpp:26:15: error: 'putchar_unlocked' was not declared in this scope
putchar('\n');
^
0_0_18383135_11735.cpp: In instantiation of 'bool Read(K&) [with K = __int128]':
0_0_18383135_11735.cpp:140:15: required from here
0_0_18383135_11735.cpp:12:20: error: 'getchar_unlocked' was not declared in this scope
char c = getchar();
^
|