using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace rock_paper_scissors { class Program { static void Main(string[] args) { Console.WriteLine("Привет! Как Тебя зовут?"); string namePlayer = Console.ReadLine(); Console.WriteLine($"Привет, {namePlayer}!"); Console.ReadKey(); } } }