Відповідь:
import math
A = int(input())
K = int(input())
C = int(input())
num_pencils = math.floor(A / K
)num_pens = math.floor((A - num_pencils * K) / C)
print(num_pencils, num_pens)
Пояснення:
надіюсь що помогла
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Відповідь:
import math
A = int(input())
K = int(input())
C = int(input())
num_pencils = math.floor(A / K
)num_pens = math.floor((A - num_pencils * K) / C)
print(num_pencils, num_pens)
Пояснення:
надіюсь що помогла