public static void Main()
Console.WriteLine("Povrch a objem kvádru");
Console.WriteLine("Zadej stranu a");
strana_a = Console.ReadLine();
a = Convert.ToInt32(strana_a);
Console.WriteLine("Vstup a od uživatele je : " + strana_a);
Console.WriteLine("Zadej stranu b");
strana_b = Console.ReadLine();
b = Convert.ToInt32(strana_b);
Console.WriteLine("Vstup b od uživatele je : " + strana_b);
Console.WriteLine("Zadej stranu c");
strana_c = Console.ReadLine();
c = Convert.ToInt32(strana_c);
Console.WriteLine("Vstup c od uživatele je : " + strana_c);
vypocet = "Objem : " + v.ToString() + "\n";
s = 2 * (a * b + b * c + a * c);
vypocet = vypocet + "Obsah : " + s.ToString() + "\n";