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