public static void Main()
Console.WriteLine("Zadej prosím celé číslo");
bool isNumberOk = int.TryParse((Console.ReadLine()), out number);
Console.WriteLine("Jejda to je problém, číslo je větší než 10. Umím počítat len do 10. Tak posílám hezký s stromeček s 10 větvemi :)");
Console.WriteLine("Jejda to je problém, zadaná hodnota není celé číslo. Na stromeček si musíš počkat do Vánoc:)");
for (int x = 0; x <= number; x++)
string treePlus = new string('*', x);
Console.WriteLine(treePlus);
for (int y = (number - 1); y <= number; y--)
string treeMinus = new string('*', y);
Console.WriteLine(treeMinus);