using System;
public class Program
{
public static void Main(string[] args)
string ime = "Симеон";
string ulica = ",,Княз Борис I''";
double nomer = 25;
double uspeh = 4.89;
Console.WriteLine("Аз се казвам " + ime);
Console.WriteLine("Живея на улица " + ulica + nomer);
Console.WriteLine("Успехът ми за миналата учебна година е " + uspeh);
}