using System;
class Tao
{
public string Name;
public string Occupation;
public int Age;
public bool Hascovid;
public void Result()
Console.WriteLine("Hi your name is:" + Name + "and my age is " + Age + " my job is " + Occupation);
}
public class Program
public static void Main(string[] args)
Tao tao = new Tao();
tao.Name = "john";
tao.Age = 17;
tao.Occupation = "IT";
tao.Hascovid = true;
tao.Result();