Submission details
Task:WA on Stone Game
Sender:yoshifumi_k
Submission time:2025-11-24 16:59:26 +0200
Language:Python3 (PyPy3)
Status:READY
Result:
Test results
testverdicttime
#10.06 sdetails

Code

def stonegame():
    A, B = map(int, input().split())
    if A == B:
        print("Maija")
    else:
        print("Uolevi")

if __name__ == "__main__":
    stonegame()

Test details

Test 1

Verdict:

input
2

correct output
1 1

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 9, in <module>
    stonegame()
  File "input/code.py", line 2, in stonegame
    A, B = map(int, input().split())
ValueError: not enough values to unpack (expected 2, got 1)