Anonymous
public text v1 · immutable#include <stdio.h>
main(int c) {
while(1) {
c = getchar(); if(feof(stdin)) break;
putchar(~c);
}
}
#include <stdio.h>
main(int c) {
while(1) {
c = getchar(); if(feof(stdin)) break;
putchar(~c);
}
}