x=int(input()) if x==1: print("Today, I ate 1 apple.") elif x>1: print(f"Today, I ate {x} applea.") else:print("Today, I ate 0 apple.")