A問題 Remaining Balls
1 2 3 4 5 6 7 8 |
s,t = input().split() a,b = map(int, input().split()) u = input() if u == s: print(a-1,b) else: print(a,b-1) |
1 2 3 4 5 6 7 8 |
s,t = input().split() a,b = map(int, input().split()) u = input() if u == s: print(a-1,b) else: print(a,b-1) |
コメント