This commit is contained in:
2023-07-02 20:12:05 +02:00
parent 7af7bb41e5
commit edde2f011b

4
oddities.py Normal file
View File

@@ -0,0 +1,4 @@
n = int(input())
for _ in range(n):
x = int(input())
print(f"{x} is {'even' if x % 2 == 0 else 'odd'}")