// No.272 NOT回路 // https://yukicoder.me/problems/no/272 // #include using namespace std; int main() { bool X; cin >> X; cout << !X << endl; }