#include <iostream> using namespace std; int main() { int a = 5; int b = a + 3; int c = b - 2; cout << c; return 0; }
6
8
5
10