- //Два бандита
- Console.WriteLine("Введите первое число не больше 10: ");
- string q = Console.ReadLine();
- int a = Convert.ToInt32(q);
- Console.WriteLine("Введите второе число не больше 10: ");
- string t = Console.ReadLine();
- int b = Convert.ToInt32(t);
- int n = (a+b)-1;
- int garry = n-a;
- int larry = n-b;
- Console.WriteLine("Ответ: ");
- Console.WriteLine(garry);
- Console.WriteLine(larry);
|