class Program { static void BotisPresentation() { string favoriteVerse = @" Grab your coat Grab your hat, baby Leave your worries on the doorstep Just direct your feet On the sunny side of the street"; string personalInfo = $@" Name: Nagy Botond Profile: Student Hobby: Music and photography Birth Date: 2003.12.11 Nationality: Hungarian"; Console.WriteLine(favoriteVerse); Console.WriteLine(personalInfo); } static void Main() { BotisPresentation(); } }