Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
99620 lihaozhi [在线测评解答教程] A+B Problem C++ Compile Error 0 MS 0 KB 324 2024-11-30 12:12:15

Tests(0/0):


Code:

import sys # 获取第一个输入 input1 = sys.stdin.readline().strip() # 获取第二个输入 input2 = sys.stdin.readline().strip() # 判断输入并显示3(这里的判断逻辑是假设的,根据实际需求可能会有所不同) if input1 == '1' and input2 == '2': print(3) # 程序结束