x=int(input()) if x==0: print('Today, I ate 0 apple.') elif x==1: print('Today, I ate 1 apple.') else: print('Today, I ate ',x,' apples.')