using System.Collections.Generic;
using System.Threading.Tasks;
namespace ConsoleApplication13
public static void Main(string[] args)
Console.WriteLine("Enter the player name");
p.name = Console.ReadLine();
Console.WriteLine("Enter the player country");
p.country = Console.ReadLine();
Console.WriteLine("Enter the player skill");
p.skill = Console.ReadLine();
Console.WriteLine("Player Details :");
Console.WriteLine("Player Name : {0}", p.name);
Console.WriteLine("Player Country : {0}", p.country);
Console.WriteLine("Player Skill : {0}", p.skill);