#include<iostream>
using namespace std;
int main()
{
	int i;
	for(i=5;i>0;i--){
		cout<<"Welcome to C++"<<endl;
	}
	
	return 0;
}