while 1: a,b=raw_input().split(" ") y=(int(a)-int(b))%360 if y<180: print -y else: print 360-y