# 读取一行输入,去除首尾空白并按空格分割成列表
input_list = input().strip().split()
# 将列表中的字符串转换为整数
a, b, c = map(int, input_list)
# 输出第二个整数
print(b)