摘要: A. Who Ate the Cake? 模拟 代码实现 a, b = map(int, input().split()) if a == b: print(-1) else: print(6-a-b) B. Piano 2 模拟 代码实现 #include <bits/stdc++.h> #def 阅读全文