Homework1/main.cpp
2025-01-22 11:14:04 +03:00

8 lines
90 B
C++

#include <iostream>
int main() {
int a = 2;
int b = 3;
std::cout << a - b;
}