class Program { static void Main() { BotondsPresentation(); } static void BotondsPresentation (){ string favoriteMusicVerse = @" Wish we could turn back time To the good old days When our mama sang us to sleep But now we're stressed out"; string firstName = "Orban"; string lastName = "Botond"; string name = firstName + " " + lastName; string hobby = "Soccer, Music, Programming"; string profile = "Student"; string birthDate = "2002.12.17"; Console.WriteLine($@"Name: {name} Profile: {profile} Hobby: {hobby} Birth Date: {birthDate} Favorite Music Verse:{favoriteMusicVerse}"); } } }