num = input().split()
for n in num:
    s = str(n)
    if s == s[::-1]:
        print("Ture")
    else:
        print("False")

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: