#include int main(void) { int c; while((c = getchar()) != EOF) { c ^= 0x80; putchar(c); } return 0; }