using System; class Program { static void Main(string[] args) { for(int i = 10; i <= 99; i++) { if (i%10 + i/10 == 11) Console.WriteLine(i); } } }