#include #include using namespace std; int print(int number) { cout << "The number is " << number << endl; return 0; } string print(string phrase) { cout << "The string is " << phrase << endl; return "done"; } int main() { cout << "Hello World" << endl; string phrase = "Digilent is awesome!"; int variable = 1234; print(phrase); print(variable); cout << "Please enter an integer: "; cin >> variable; cout << endl; cout << "Please enter string: "; cin >> phrase; cout << endl; print(variable); print(phrase); return 0; }