using System;
public class Program
{
public static void Main()
var memo = "";
string nullString = null;
var notNull = "hello";
var world = " world";
memo += notNull;
memo += nullString;
memo += world;
Console.WriteLine(memo);
}