using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace _1._6_Foreign_Languages { class Program { static void Main(string[] args) { string countryName = Console.ReadLine(); if (countryName == "England" || countryName == "USA") { Console.WriteLine("English"); } else if (countryName == "Spain" || countryName == "Argentina" || countryName == "Mexico") { Console.WriteLine("Spanish"); } else { Console.WriteLine("unknown"); } } } }