Skip to content

Commit 40da86e

Browse files
authored
Create 2217.py
1 parent e51808e commit 40da86e

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

Uri_Online_Judge/2217.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
casos = int(input())
2+
for i in range(casos):
3+
n = int(input())
4+
if n%2 == 0:
5+
print("1")
6+
else:
7+
print("9")

0 commit comments

Comments
 (0)