#include <iostream>
using namespace std;

int main() {
	
	int cut=0;
	while(cut<10){
		cout<<"HELLO,C++"<<cut<<endl;
		cut++;
		//cut=0-9
		
	}
	
	
	return 0;
}