#include using namespace std ; void f1( int x1 ) { cout << x1 << endl ; } void f1( int& x1 ) { cout << x1 << endl ; } void f1( int&& x1 ) { cout << x1 << endl ; } int main() { int x1 = 10 ; int y1 = 30 ; f1( x1 ) ; f1( 15 ) ; return 0 ; }