using System.Runtime.CompilerServices; class Program { static void Presentation(string name, string hobby, DateOnly birthday){ Console.WriteLine(@"One verse from my favorite music: ""Gondoltam egye-fene, elindulok haza fele Kezemben egy kover deckkel A masikban egy hideg, felig ures uveg Hat eleg hulye egy reggel..."""); Console.WriteLine($"Hello, my name is {name}. I was born on {birthday,20:D}. One of my hobbies is {hobby}."); } static void Main(string[] args) { Presentation("Benedek", "boxing", new DateOnly(2002, 3, 20)); } }