This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Показувати повідомлення1double a = 10.5;
2double b = 20.3;
3double sum = a + b;
4Console.WriteLine($"Сума: {sum}");
5