#include "Mid.h" int main() { // Get info about the mid Mid someMid; cout << "Please enter mid's name(1 word) and alpha: "; read(someMid, cin); // Say hello cout << "Hello, "; write(someMid, cout); cout << endl; return 0; }