#include using namespace std; void saymace(); void sayrun(); int main() { saymace(); saymace(); sayrun(); sayrun(); cin.get(); cin.get(); return(0); } void saymace() { cout << "There blind mice" << endl; } void sayrun() { cout << "See how they run" << endl; }