N
以下はこの課題に対して不正でない出力を行うプログラムの一例である。
#include <stdio.h>
int main() {
int n;
while (scanf("%d", &n) != EOF) {
fprintf(stdout, "%d\n", n % 3 + 1);
fflush(stdout);
}
return 0;
}
import sys
for line in sys.stdin:
N = int(line)
print(N % 3 + 1, flush=True)
$stdout.sync = true
while line = STDIN.gets
N = line.to_i
puts N % 3 + 1
end