def Main(): a=input() if a[0]=="-": print(0) elif len(a)<3: print(0) else: print(a[:-2]) Main()