#include<bits/stdc++.h> using namespace std; int main(){ int c; cin>>c; if(c<2){ cout<<"Today, I ate "<<"1"<<" apple."<<endl; }

else if(c>=2){
	cout<<"Today, I ate "<<c<<" apples."<<endl;
}

return 0; }

0 comments

No comments so far...