import java.io.File;
import java.util.Scanner;
import java.io.IOException;
public class test {
public static void main(String[] args) throws IOException {
File file = new File("scores.txt");
Scanner input = new Scanner(file);
while (input.hasNext()) {
String firstName = input.next();
String mi = input.next();
String lastName = input.next();
int score = input.nextInt();
System.out.println(firstName + " " + mi + " " + lastName + " " + score);
}
input.close();
}
}
03-07
549

04-15
1881
