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(y);
input.close();
}
}
class Input {
Scanner in;
public int InputInt() {
int x = 0;
in = new Scanner(System.in);
// reads int from the console
// and stores into x
x = in.nextInt();
return x;
}
public void close() {
in.close();
}
}