Кто шарит в Python, помогите, столкнулся с проблемой Задача: шахматная доска 8х8, по координатам определить цвет.

a, b = input()
b = int(b)
if a == 'A' or a == 'C' or a == 'E' or a =='G' and b % 2 != 0:
print ('BLACK')
else:
print ('WHITE')

Код работает правильно в моем IDE (pycharm community 2017), но он получает ошибку, как вы видите в online IDEs ( на geeksforgeeks ide ):

Traceback (most recent call last):
File "/home/54dbb15557947e0a9aaf68bb4ae8f653.py", line 1, in
a, b = input()
ValueError: not enough values to unpack (expected 2, got 1)
Please enter comments
Please enter your name.
Please enter the correct email address.
You must agree before submitting.

Copyright © 2024 SCHOLAR.TIPS - All rights reserved.