using System;

class Human
{
    string name = "Pan Xiaopeng";
    string wife = "CiCi";
    string weixin = "GhostCTO";
    string[] blogs = {
        "https://pxp1230.github.io/",
        "https://pxp1230.gitee.io/"
    };
    string[] professionalFields = {
        "Physics",
        "Mathematics"
    };
    string[] interestsOfLife = {
        "Reading",
        "Music",
        "Tea/Coffee"
    };
                         
    void Everyday()
    {
        Console.WriteLine("Seeking For Truth");
    }
}