Ответ:
n = int(input())
c1 = n // 10
c2 = n % 10
sum = c1 + c2
product = c1 * c2
print(sum)
print(product)
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Ответ:
n = int(input())
c1 = n // 10
c2 = n % 10
sum = c1 + c2
product = c1 * c2
print(sum)
print(product)