using System;
public class Program
{
public static void Main()
string knowledge ="coding";
string woohoo =" it worked";
Console.WriteLine("I'm attempting " + knowledge + " pls work lol");
Console.WriteLine("yay" + woohoo);
}