/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

/**
 *
 * @author 073795502
 */
import java.io.*;
public class QuizTime {

    /**
     * @param args the command line arguments
     */
    public static void main(String[] args) {

        String[] qs=new String[5];

        BufferedReader f;

        try
        {
            f=new BufferedReader(new FileReader("H:\\DWITEProjects\\QuizTime\\build\\classes\\DATA1.txt"));

            String temp;
            int index;

            for(int i=0; i<5; i++)
            {
                temp=f.readLine();
                index=Integer.parseInt(f.readLine())-1;

                qs[index]=temp;
            }
        }
        catch(IOException e)
        {
        }

        for(int i=0; i<5; i++)
        {
            System.out.println(qs[i]);
        }
    }

}

