Skip to content

Commit 982259d

Browse files
committed
updated problem to print reverse integers
1 parent f81897e commit 982259d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
t = int(input())
22
while t:
33
n = input()
4-
print(n[::-1])
5-
t-= 1
4+
print(int(n[::-1]))
5+
t -= 1

0 commit comments

Comments
 (0)