A, B = map(int, input().split()) r = 12*60*60 h = A*60*60+B*60 m = 12*B*60 h%=r m%=r if m<=h: sa = h-m else: sa = h-m+12*60*60 t = 12-1 print(sa//t)