Умножение

This commit is contained in:
Egor Sennov 2025-01-22 11:25:52 +03:00
parent e8e69650da
commit 3c95f1ed5c
No known key found for this signature in database
GPG Key ID: B731C7656FB71AA2
2 changed files with 2 additions and 0 deletions

View File

@ -1 +1,2 @@
# Проект - калькулятор
### Суммирует числа

View File

@ -8,4 +8,5 @@ int main() {
std::cin >> a >> b;
std::cout << a - b;
std::cout << a + b;
std::cout << a * b;
}