#include #include using namespace std; void MyIncrement(int & x) { x++; } int main() { int MyInt=4; MyIncrement(MyInt); cout<