import java.util.Scanner;
class Min {
public static void main(String[] args) {
int x = 0, y = 0, z = 0, f = 0, i = 0;
Input input = new Input();
x = input.InputInt();
System.out.println(x);
y = input.InputInt();
System.out.println(x);
}
}
class Input {
public int InputInt() {
int x = 0;
Scanner in = new Scanner(System.in);
// reads int from the console
// and stores into x
x = in.nextInt();
// notice that now you can close the stream, since the method is non static
in.close();
return x;
}
}