+ 7
if(country=="Tajikistan")
say hello from Tajikistan.
2 Answers
+ 6
string country, text="";
country=Console.ReadLine();
if(country=="Tajikistan")
   text="Далом Š¼Š°ŃŠ“ŃŠ¼!";
else
   text="Visit Tajikistan";
Console.WriteLine(text);
+ 3
country = input()
while(True)
    if(country = "Britain"):
        print("RULE BRITANNIA")
    else:
        print("How hath thou escapƩd mine King's empire?")
break
šš¬š§



