1 #include <iostream>
2 #include <fstream>
3 #include <string>
4 using namespace std;
5
6 int main()
7 {
8 ifstream input("scores.txt");
9
10
11 string firstName;
12 char mi;
13 string lastName;
14 int score;
15 input >> firstName >> mi >> lastName >> score;
16 cout << firstName << " " << mi << " " << lastName << " "
17 << score << endl;
18
19 input >> firstName >> mi >> lastName >> score;
20 cout << firstName << " " << mi << " " << lastName << " "
21 << score << endl;
22
23 input.close();
24
25 cout << "Done" << endl;
26
27 return 0;
28 }