a, b = map(int, input().split(‘ ‘))
if a % b == 0 or b % a == 0:
print(‘Sao Multiplos’)
else:
print(‘Nao sao Multiplos’)
为啥总是提示错误呢?
代码提交状态: Compile Error
Traceback (most recent call last):
File “a.py”, line 1, in [HTML_REMOVED]
a, b = map(int, input().split(‘ ‘))
File “[HTML_REMOVED]“, line 1
60 15
^
SyntaxError: invalid syntax