International Dates

This commit is contained in:
2023-07-03 13:26:26 +02:00
parent fee7f6a8e1
commit 9471cd2034

7
internationaldates.py Normal file
View File

@@ -0,0 +1,7 @@
a, b, c = map(int, input().split("/"))
if a <= 12 and b <= 12:
print("either")
elif a <= 12:
print("US")
else:
print("EU")