import java.io.*;
import java.util.Scanner;

/**
 * @author: Ahmed.Medhat
 * @Email:a.medhat.cs@gmail.com
 * @CodeJam_Handel: Egy.Turing
 */
public class Test {
	
	/* if test  -->0
	 * if small -->1
	 * if large -->2
	*/
	int testType = 0;
	
	Scanner sc;
	PrintWriter pw;
	
	Test()throws Exception{
		init();
		
		//Write the code here
		
		pw.flush();
		sc.close();
	}
	void init()throws Exception{
		if(testType==0){
			sc = new Scanner(new FileReader("c-test.in"));
			pw = new PrintWriter(new FileWriter("c-test.out"));
		}
		else if(testType==1){
			sc = new Scanner(new FileReader("c-small.in"));
			pw = new PrintWriter(new FileWriter("c-small.out"));
		}
		else if(testType==2){
			sc = new Scanner(new FileReader("c-large.in"));
			pw = new PrintWriter(new FileWriter("c-large.out"));
		}
	}
	public static void main(String[] args) throws Exception{
		new Test();
		System.exit(0);
	}
}
