#include <iostream>
using namespace std;


int getRandomFood(){
	return 10;
}
int main() {
	for(int i=1;i<=25;i++){
		cout<<"comment "<<i<<" gets "<<getRandomFood()<<" food."<<endl;
	}
	return 0;
}