n = int(input()) rev = 0 while(n > 0): a = n % 10 rev = rev * 10 + a n = n // 10 print(rev)
i am getting TLC can anyone will me with the code