#include<iostream>
using namespace std;
void print(int i)
{
cout << "print an integer:" << endl;
}
void print(string str)
{
cout << "print a string :" << str << endl;
}
int main()
{
print(12);
print("hello world!");
return 0;
}
#include<iostream>
using namespace std;
void print(int i)
{
cout << "print an integer:" << endl;
}
void print(string str)
{
cout << "print a string :" << str << endl;
}
int main()
{
print(12);
print("hello world!");
return 0;
}