
import java.util.Scanner;
import java.io.FileNotFoundException;
import java.io.File;

class Sep23 {
	public static void main(String[] args) {

		Scanner input = null;

		try {
			File f = new File("numbers.txt");
			input = new Scanner(f);

		} catch (FileNotFoundException e) {
			System.out.println("file not found");
			return;
		}

		// scanner is set up to read from the file

		int[] arr = new int[7];
		
		for(int i = 0; i < arr.length; i++) {
			arr[i] = input.nextInt();
		}	

		for(int i = 0; i < arr.length; i++) {
			System.out.print(arr[i] + " ");
		}
		System.out.println();

	}
}


