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