#include <iostream> using namespace std; int main () { int min = 0; int left = 4; int right = 4; min = (left + right) >> 1; cout << min; }