public Info(string name, int age, string prof,string E,string Gen)
public Info (string ad, string bp, string bd,string H, string W)
public static void Main(string[] args)
Info A = new Info ("Touya Todoroki",20,"Working Student","Japanese","Male");
Info a = new Info ("ohoko ST.","[REDACTED]" ,"150kg","5'9","january 18 ");
Console.WriteLine("NAME: " + A.name);
Console.WriteLine("AGE: " + A.age);
Console.WriteLine("PROFESSION: " + A.prof);
Console.WriteLine("ETHNICITY: " + A.E);
Console.WriteLine("GENDER: " + A.Gen);
Console.WriteLine("ADDRESS: " + a.ad);
Console.WriteLine("HEIGHT: " + a.H);
Console.WriteLine("WEIGHT: " + a.W);
Console.WriteLine("BIRTH PLACE: " + a.bp);
Console.WriteLine("BIRTHDAY: " + a.bd);
Info B = new Info("Shoto Todoroki",15,"Student","Japanese","Male");
Info b = new Info("shizuoka prefecture","5'9","52 kg","shizuoka prefecture","January 11");
Console.WriteLine("NAME: " + B.name);
Console.WriteLine("AGE: " + B.age);
Console.WriteLine("PROFESSION: " + B.prof);
Console.WriteLine("ETHNICITY: " + B.E);
Console.WriteLine("GENDER: " + B.Gen);
Console.WriteLine("ADDRESS: " + b.ad);
Console.WriteLine("HEIGHT: " + b.H);
Console.WriteLine("WEIGHT: " + b.W);
Console.WriteLine("BIRTH PLACE: " + b.bp);
Console.WriteLine("BIRTHDAY: " + b.bd);