a,b=map(int, input().split()) cnt = 3 for i in [23,24,25]: if a <= i <= b: cnt -= 1 print(cnt)