using System; class Program { static void NikiPresentation() { string favoriteMusicVerse = @"Got any grapes?"; string name = "Szabo Nikoletta-Laura"; string profile = "computer science"; string hobby = "reading"; string birthDate = "2003/10/06"; System.Console.Write("Favorite Music Verse: "); System.Console.Write(favoriteMusicVerse); System.Console.WriteLine(); System.Console.WriteLine($"Name: {name}"); System.Console.WriteLine($"Profile: {profile}"); System.Console.WriteLine($"Hobby: {hobby}"); System.Console.WriteLine($"Birth Date: {birthDate}"); } static void Main() { NikiPresentation(); } }