using System;
public class Player
{
public string name;
public int score;
public int health;
}
public class program
public static void Main()
Player playerOne = new Player();
playerOne.name = "parzival";
playerOne.score = 0;
playerOne.health = 100;
Console.WriteLine("Player One is " + playerOne.name);
Console.WriteLine("They have a score of " + playerOne.score.ToString());