Feedback for FLOW007 problem

Problem Link: FLOW007 Problem - CodeChef

Feedback

Rather than this code, I believe
for _ in range(int(input())):
print(int(input()[::-1]))
It would be a MUCH SIMPLER piece, and it teaches users an easy method to reverse a string, rather than the enormous amount of looping of ten thousand times, as the codechef solution does.