A = input("Count of apples: ") B = input("Count of friends: ") A, B = int(A), int(B) print(A//B) print(A%B) print(A/B)