题解 | #开学?#
开学?
https://www.nowcoder.com/practice/9cc35bd0754f4feca18e10e57c672467
while True: try: a,b=map(int,input().split()) c=(a+b)%7 if c==0: print(7) else: print(c) except: break
开学?
https://www.nowcoder.com/practice/9cc35bd0754f4feca18e10e57c672467
while True: try: a,b=map(int,input().split()) c=(a+b)%7 if c==0: print(7) else: print(c) except: break
相关推荐