// 接受用户键盘输入
import java.util.Scanner;
Scanner sc = new Scanner(System.in);
String str = sc.next();
int num = sc.nextInt();
System.out.println(num);