import java.util.Scanner;
import java.io.File;
public class Main
{
public static void main(String[] args) {
int counter = 0;
int small=0;
int big=0;
char letter;
String word;
Scanner sc = new Scanner(new File("data.txt"));
System.out.println(sc);
sc.close();
}
}