#include <iostream> using namespace std; // Write your two overloaded process() functions here void process( int& a){ a *= 2; } void process(const int& a){ cout << "readonly" << endl; } int main() { int x; std::cin >> x; if (x < 0) { process(static_cast<const int&>(x)); // call read-only overload } else { process(x); // call modifying overload std::cout << x; } return 0; }
Test Cases
Test Results
Input
5
Expected Output
10