8 lines
90 B
C++
8 lines
90 B
C++
#include <iostream>
|
|
|
|
int main() {
|
|
int a = 2;
|
|
int b = 3;
|
|
std::cout << a - b;
|
|
}
|