using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;namespace ConsoleApp1{ class Program { static void Main(string[] args) { int b = Convert.ToInt32(Console.ReadLine()); Console.WriteLine("Квадраты от 10 до"+ b); for (int i = 10;i<=b;i++) { Console.WriteLine(i*i); } int a = Convert.ToInt32(Console.ReadLine()); Console.WriteLine("Кубы от"+ a +"до 50"); for (int i = a; i <= 50; i++) { Console.WriteLine(i * i * i); } Console.WriteLine("Целые числа от "+(a<b?a:b)+"до"+ (a < b ? b : a)); if (a<b) { for (int i = a; i <= b; i++) { Console.WriteLine(i); } } else { for (int i = b; i <= a; i++) { Console.WriteLine(i); } } Console.ReadKey(); } }}