#include #include using namespace std; int main() { int i = 10; int j = 20; int k = (i + j) / 2; cout << (j + 40) / 2 << "\n"; return EXIT_SUCCESS; }