摘要: A. Shuffled Equation 排序 代码实现 a, b, c = sorted(map(int, input().split())) if a*b == c: print('Yes') else: print('No') B. Who is Missing? 模拟 代码实现 #inclu 阅读全文