using System;
public class Program
{
public static void Main()
int number1 = 15; // Цілочисельне число 4 byte
double number2 = 105.065; // Дробове число 8 byte
string txt = "Назарій Гондера";
char symbol = 'W';
Console.WriteLine(number1);
Console.WriteLine(number2);
Console.WriteLine(txt);
Console.WriteLine(symbol);
}