#include using namespace std; int times10 (int); int times10 (int i) { return i*10; } int main() { int i=10; int j; j=times10(i); cout << i << endl; cout << j << endl; return 0; }