class Program
{
static void Main()
{
FavoriteSong();
SzabiPersonalInfomations("Szabi", 20, "Informatics", new DateTime(2003, 06, 21), "programming");
}
static void SzabiPersonalInfomations(string name = "Szabi", int age = 20, string profile = "Informatics", DateTime birth = new(), string hobby = "programming") {
Console.WriteLine($"My name is {name}.");
Console.WriteLine($"I'm {age} years old.");
Console.WriteLine($"I'm studying {profile}.");
Console.WriteLine($"I was born in {{{birth.Year} - {birth.Month} - {birth.Day}}}.");
Console.WriteLine($"My hobby is {hobby}.");
}
static void FavoriteSong() {
Console.WriteLine(@"My favorite song is ""béke"" by Azariah.");
string song = "\t\"ge-ge-ge-ge-get up, standup\n\tand take control\n\tvedd kezedbe a sorsod\n\tnincs rosszabb én ezt nem hiszem el\n\tha hív a csapat, akkor blaze sum more\n\tés látod majd a gondod, érzed nem is olyan nagy a baj..\"";
Console.WriteLine(song);
}
}