1#include <iostream>
2using namespace std;
3void f(double x)
4{
5 cout << "DOUBLE" << endl;
6}
7
8void f(int &x)
9{
10 cout << "INT&" << endl;
11}
12
13int main()
14{
15 f(2);
16}
1#include <iostream>
2using namespace std;
3void f(double x)
4{
5 cout << "DOUBLE" << endl;
6}
7
8void f(int &x)
9{
10 cout << "INT&" << endl;
11}
12
13int main()
14{
15 f(2);
16}