#!/usr/bin/env python3 import sys import math for line in sys.stdin: if float(line)>0: print(1) else: print(0)