Объяснение:
Python 3.10
n1 = int(input())
n2 = int(input())
n3 = int(input())
if n1 % n2 == 0 and n1 % n3 == 0:
print(n2 * n3)
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Объяснение:
Python 3.10
n1 = int(input())
n2 = int(input())
n3 = int(input())
if n1 % n2 == 0 and n1 % n3 == 0:
print(n2 * n3)