write a code to reads two lines of input and print the second line input.

write a code to reads two lines of input and print the second line input.


    a=input()

    b=input()

    print(b)

Comments