#33165: Python: AC (0.1s, 3.3MB)


imlindora@gmail.com (Augus)


while True:
    try:
        h,m,s=map(int,input().split())
        if m/s<=h:
            print(f'{h} {m} {s}. I will make it!')
        else:
            print(f'{h} {m} {s}. I will be late!')
    except:
        break