#16481: 用while來做


loofah1212 (欲辯已忘言)


#include <iostream>


using namespace std;
int main() {

int input;
while(cin>>input)
{
cout <<-input+1<< endl;
}// end while

return 0;
}