write a code to read two lines of input and prints those two lines in reverse order.

write a code to read two lines of input and prints those two lines in reverse order.


    a=input()

    b=input()

    print(b)

    print(a)

Comments