using System; class HelloWorld { static void Main() { string name = Console.ReadLine(); string lastName = "Petrov"; int age = Convert.ToInt32(Console.ReadLine()); string fullName = name + " "+ lastName; string userInfo = $"{fullName} возраст: {age+1}"; string t = String.Format("Ваше имя {0}", fullName); System.Console.WriteLine("Hello " + fullName); System.Console.Write("Hello " + userInfo+"\n"); double points = 0; points = 100; int bonus = 500; bool gameOver = false; int killedTanks = 7, destroedBuildings = 2; double pointsForTank = 1.5; // * - + / % double pointsForBuilding = 3.5; points = killedTanks * pointsForTank + destroedBuildings * pointsForBuilding; int userLevel = (int) (points / 2); System.Console.Write("Game over "+gameOver+"\n"+(int)(points+bonus) +"\nВы уничтожили "+killedTanks+" танков"); } }