using System; public class Test { public static void Main() { int a = 42; string str = "69"; Console.WriteLine(a + str); } }