import java.util.*;

class Fifi {

    static String computeFibo(int n) {
	String res="";
	
	// compute the fibo code from n and store the result in res
	
        return res;
    }
    
    public static void main(String[] args) {
	Locale.setDefault(Locale.ENGLISH);	
	Scanner scan = new Scanner(System.in);
	
        int nbRow = scan.nextInt();

	for(int i=0;i<nbRow;i++) {

            int val = scan.nextInt();
            System.out.println(computeFibo(val));
        }
    }
}
