a,b=map(int,input().split()) ans=0 for i in range(23,26): if a>i or i>b: ans+=1 print(ans)