#include <iostream>
using namespace std;
int main() {
string str="Welcome to ACM / ICPC!";
for(int i=1;i<=3;i++)
cout << str << '\n';
return 0;
}
// 64 位输出请用 printf("%lld")

#include <iostream>
using namespace std;
int main() {
string str="Welcome to ACM / ICPC!";
for(int i=1;i<=3;i++)
cout << str << '\n';
return 0;
}
// 64 位输出请用 printf("%lld")