1 2 3 4 5 6 7 8 | #include <cstdio> int main(){ printf("%d\n", 2%5); printf("%d\n", -2%5); printf("%d\n", -2%77); printf("%d\n", 2%-77); printf("%d\n", -2%-77); } |
I2luY2x1ZGUgPGNzdGRpbz4KaW50IG1haW4oKXsKcHJpbnRmKCIlZFxuIiwgMiU1KTsKcHJpbnRmKCIlZFxuIiwgLTIlNSk7CnByaW50ZigiJWRcbiIsIC0yJTc3KTsKcHJpbnRmKCIlZFxuIiwgMiUtNzcpOwpwcmludGYoIiVkXG4iLCAtMiUtNzcpOwp9
-
upload with new input
-
result: Success time: 0.01s memory: 2724 kB returned value: 0
2 -2 -2 2 -2


