using System; /* //task 1 int a, b,i; Console.WriteLine("Введите первое число"); a = int.Parse(Console.ReadLine()); Console.WriteLine("Введите второе число"); b = int.Parse(Console.ReadLine()); i = a + b; Console.WriteLine("Ответ = " + i); Console.Read(); */ /* //task 2 int a, b, c; Console.WriteLine("Введите чему равна ширана"); a = int.Parse(Console.ReadLine()); Console.WriteLine("Введите чему равна высота"); b = int.Parse(Console.ReadLine()); Console.WriteLine("Введите чему равен радиус"); c = int.Parse(Console.ReadLine()); if (a >= c & b <= c) { Console.WriteLine("YES"); } else if (a <= c & b <= c) { Console.WriteLine("NO"); } */ /* //task 3 int a,b; Console.WriteLine("Введите первое число"); a = int.Parse(Console.ReadLine()); Console.WriteLine("Введите второе число"); b = int.Parse(Console.ReadLine()); if (a >= b) { Console.WriteLine(a + ">" + b); } else if (a <= b) { Console.WriteLine(a + "<" + b); } else if (a == b) { Console.WriteLine(a + "=" + b); } */ /* //task 4 int L, W, H, S; Console.WriteLine("Введите длину"); L = int.Parse(Console.ReadLine()); Console.WriteLine("Введите ширину"); W = int.Parse(Console.ReadLine()); Console.WriteLine("Введите высоту"); H = int.Parse(Console.ReadLine()); int banka = 16; S = 2*(L * H) + 2*(W * H); Console.WriteLine(S/16); */ //task 5 int a, b, n; Console.WriteLine("Введите первое число не больше 10:"); a = int.Parse(Console.ReadLine()); Console.WriteLine("Введите второе число не больше 10:"); b = int.Parse(Console.ReadLine()); n = (a + b) - 1; int first = n - a; int second = n - b; Console.WriteLine("Ответ = " + first + " " + second);