import java.util.Scanner;
public class d058 {
public static void main(String[] args) { // TODO Auto-generated method stub Scanner sc = new Scanner(System.in); int a =sc.nextInt(); System.out.println(a == 0 ? 0 : a > 0 ? 1 : -1); }
}