https://www.acmicpc.net/problem/10178
t = int(input()) for _ in range(t): c, v = map(int, input().split()) print(f"You get {c // v} piece(s) and your dad gets {c % v} piece(s).")