#include <iostream>
using namespace std;

int main() 
{
    int n=3;
  while(n--)
  {
    cout<<"Welcome to ACM / ICPC!"<<endl;
  } 
}
// 64 位输出请用 printf("%lld")