Вычитание

This commit is contained in:
Egor Sennov 2025-01-22 11:14:04 +03:00
parent 29e236d5f1
commit b07c42514c
No known key found for this signature in database
GPG Key ID: B731C7656FB71AA2

View File

@ -1,5 +1,7 @@
#include <iostream>
int main() {
std::cout << "Hello";
int a = 2;
int b = 3;
std::cout << a - b;
}