123456789101112131415
#include <iostream> using namespace std; string firstPresident(); int main() { cout << firstPresident() << end << end; system("pause"); } string firstPresident() { return "George Washington"; }