// Follow the in-line comments to make this program run. // Create an input file and write your name in // it (first and last only). // Example: Luke Skywalker #include // include the file stream library using namespace std; int main() { string first_name; string last_name; // create an input file stream object named fin // open the input file you created fin >> first_name >> last_name; cout << first_name << " " << last_name << " is going to make an A in " << "their 1428 lab!"; // close file return 0; }