| Task: | WA on Stone Game |
| Sender: | erimey |
| Submission time: | 2025-11-24 16:28:19 +0200 |
| Language: | Python3 (PyPy3) |
| Status: | READY |
| Result: | ACCEPTED |
| test | verdict | time | |
|---|---|---|---|
| #1 | ACCEPTED | 0.04 s | details |
Code
# a, b = map(int, input().split())
# if a == b:
# print("maja")
# else:
# print("Uolevi")
def test():
return "1 1" # if a == b the code return maja not Maija
if __name__ == "__main__":
res = test()
print(res)
