Veður - Lokaðar heiðar

This commit is contained in:
2023-10-16 22:46:40 +02:00
parent 1fa5411107
commit d661b76d6c

6
vedurheidar.py Normal file
View File

@@ -0,0 +1,6 @@
v = int(input())
n = int(input())
for _ in range(n):
s, k = input().strip().split()
print(f"{s} {'opin' if int(k) >= v else 'lokud'}")