Skip to content

Instantly share code, notes, and snippets.

@gauravkoradiya
Last active April 19, 2020 08:27
Show Gist options
  • Save gauravkoradiya/c42e0c171ec7896e9e13095461bcb1f6 to your computer and use it in GitHub Desktop.
Save gauravkoradiya/c42e0c171ec7896e9e13095461bcb1f6 to your computer and use it in GitHub Desktop.
Codechef_DSA01 - Reverse The Number - FLOW007
"""https://www.codechef.com/LRNDSA01/problems/FLOW007"""
def main():
n=int(input())
while(n!=0):
print(int(input()[::-1]))
n-=1
if __name__ == '__main__':
main()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment