package lectures.oegraphics;
import util.annotations.WebDocuments;

import java.util.Scanner;

@WebDocuments({"Lectures/Oegraphics.pptx", "Lectures/Oegraphics.pdf", "Videos/Oegraphics.avi"})
public class ScannerEchoer {
    public static void main (String[] args) {
        Scanner scanner = new Scanner (System.in);
        while (true) {
           System.out.println(scanner.nextLine());  
        }
    }
}