python代码求助

P1001 A+B Problem

woaiWANYS1123 @ 2024-12-13 19:10:12

a = int(input())
b = int(input())
print(a+b)
???为什么会RE

by woaiWANYS1123 @ 2024-12-13 19:10:37

IDLE没问题啊


by woaiWANYS1123 @ 2024-12-13 19:11:07

= RESTART: C:\Users\Administrator\AppData\Local\Programs\Python\Python39-32\man.py这是啥


by fangkai123 @ 2024-12-13 19:23:43

也许这题不接受python?(本人学过python,木有问题)


by chillchill @ 2024-12-13 19:29:18

输入在同一行

a,b=[int(i) for i in input().split()]
print(a+b)

望关


by woaiWANYS1123 @ 2024-12-13 20:04:53

@chillchill 啊?(真没想到)


by Hxr341802 @ 2024-12-13 20:27:00

木有问题啊,本人python这个代码用了2年都没问题


|