using System;
public class player
{//PUBLIC-
//private String name = "sagar";
//public int health = 49;
//method-
//public void setHealth(int h)
//{
// health = h;
//}
//public static void Main()
//player tommy = new player();
//tommy.setHealth(50);
// Console.WriteLine(tommy.health);
//PRIVATE-
public String name = "sagar";
private int health = 49;
public int getHealth()
{
return health ;
}
public static void Main()
player tommy = new player();
Console.WriteLine(tommy.getHealth());