#include <iostream> using namespace std; int main(){ int a,y; cin>>a; if(a>0){ y=1; cout<<y; }else if(a==0){ y=0; cout<<y; }else{ y=-1; cout<<y; } }