Problem B: Apples
[Creator : ]
Description
#include <iostream>
using namespace std;
int main() {
int x;
cin >> x;
cout << "Today, I ate " << x << " apple";
if (______) {
________________
}
cout << "." << endl;
return 0;
}
Sample Input Copy
1
Sample Output Copy
Today, I ate 1 apple.