#include <stdio.h>
int main ()
{   int i = 0;
    while (i < 3)
    {
    printf("Welcome to ACM / ICPC!\n");
    i = i + 1;
    }
    return 0;
}