2, the output of the second integer

Title: Enter three integers, separated by a space between the integer, integer 32-bit signed integer. The output of the second input integer.

a,b,c = map(int,input().split())
print(b)

 

Guess you like

Origin www.cnblogs.com/echo-kid-coding/p/11113171.html