using System;
public class Program
{
public static void Main()
char[] tomb = new char[5];
tomb[0] = 's';
tomb[1] = 'z';
tomb[2] = 'i';
tomb[3] = 'a';
tomb[4] = '!';
Console.WriteLine(tomb[0]+" "+tomb[1]+" "+tomb[2]+" "+tomb[3]+" "+tomb[4]);
string[] tomb2 = new string[5];
tomb2[0] = "s";
tomb2[1] = "z";
tomb2[2] = "i";
tomb2[3] = "a";
tomb2[4] = "!";
Console.WriteLine(tomb2[0]+tomb2[1]+tomb2[2]+tomb2[3]+tomb2[4]);
}