using System;
public class Program
{
public static void Main()
string a = "文字列";
string b = "の足し算";
Console.WriteLine(a + b);
}