5 lines
97 B
Text
5 lines
97 B
Text
int main () {
|
|
int res = 8 - 20 - 13 * 100;
|
|
res = abs(res * 2) / 2;
|
|
return res % 2;
|
|
}
|