BC6 牛牛的第二个整数

思路:

step1:先用list(map())转换为int型,再转为列表,再用空格隔开每个输入;
step2:输入列表第二个值(序号为1)

代码如下:

n = list(map(int,input().split()))
print(n[1])