#include main() { char name[80]; char major[80]; cin.getline(name, 80); cin.getline(major, 80); cout << name << "\n"; cout << major << "\n"; }