class Program { static void Main() { RomeosPresentation(); } static void RomeosPresentation() { Console.WriteLine("--- Romeo's presentation ---n"); Console.WriteLine("A verse from my favorite music:n"); string favoriteMusic = @"Baby, baby tell me more of your lies Say you want me for a lifetime I believe you even when I know it's a lie Love's so blind Sweet true lies"; string name = "tBereczki-Kiraly Romeo"; string profile = "I am a 20 year old boy, who is currently attending Informatics classes at Sapientia university."; string hobby = "My hobbies are playing video games, watching series and analyzing every little detail about them."; string birthDate = "I was born on the 21st of October, in 2003"; Console.WriteLine(favoriteMusic); Console.WriteLine("About me:"); Console.WriteLine($"tName: {name}"); Console.WriteLine($"tProfile: {profile}"); Console.WriteLine($"tHobby: {hobby}"); Console.WriteLine($"tbirthDate: {birthDate}"); } }