public static void Main(string[] args)
sValue = "A" + "B" + "CDE";
sValue = iValue + "\n" + rValue + "\n" + sValue + "\n" + bValue;
output("iValue = " + iValue + "\n");
output("rValue = " + rValue + "\n");
output("sValue = " + sValue + "\n");
output("bValue = " + bValue + "\n");
private static void output(string text)