#include<bits/stdc++.h> //万能头,或者需要头文件#include<string>
using namespace std;
int main()
{
string a="Welcome to ACM / ICPC!"; //考察字符串
cout<<a<<endl<<a<<endl<<a; //输出注意换行
return 0;
}

#include<bits/stdc++.h> //万能头,或者需要头文件#include<string>
using namespace std;
int main()
{
string a="Welcome to ACM / ICPC!"; //考察字符串
cout<<a<<endl<<a<<endl<<a; //输出注意换行
return 0;
}