using System;
public class Program
{
public static void Main()
int a = 0;
string text = "";
goto b;
yyy:
goto x;
e:
if (a == 0)
text += "в";
a++;
goto f;
}
else if (a == 1)
text += "т";
goto abc;
ggg:
text += " ";
goto ttt;
kkk:
text += "к";
goto c;
c:
text += "и";
if(a==0) goto e;
text += "!";
goto yyy;
vvv:
ttt:
text += "ч";
tre:
text += "л";
goto der;
a:
text += "р";
abc:
text += ",";
goto ggg;
der:
text += "о";
goto vvv;
b:
text += "П";
goto a;
f:
text += "е";
if(a==1)
goto e;
else if(a==2)
goto tre;
goto kkk;
x:
Console.WriteLine(text);