// NOTE: it is recommended to use this even if you don't understand the following code.

#include <assert.h>
#include <stdio.h>
#include <stdlib.h>

// input data
int Q, A;

int main() {
    // uncomment the following lines if you want to read/write from files
    // freopen("input.txt", "r", stdin);
    // freopen("output.txt", "w", stdout);

    assert(1 == scanf("%d", &Q));
    for (int i = 0; i < Q; i++) {
        assert(1 == scanf("%d", &A));

        // insert your code here

        // print the result
        printf("%d %d\n", 42, 42); 
    }

    return 0;
}
