Ответ:
a = int(input())
b = int(input())
c = int(input())
if a % b == 0 and a % c == 0:
print(b * c)
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Ответ:
a = int(input())
b = int(input())
c = int(input())
if a % b == 0 and a % c == 0:
print(b * c)