Ответ:
це на Python
Объяснение:
b = float(input('Введіть число b: '))
c = float(input('Введіть число c: '))
first = ((b+25)**7)/(31)
second = c**5/4
res = first + second
print(res)
або
res = (((b+25)**7)/(31))+(c**5/4)
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Ответ:
це на Python
Объяснение:
b = float(input('Введіть число b: '))
c = float(input('Введіть число c: '))
first = ((b+25)**7)/(31)
second = c**5/4
res = first + second
print(res)
або
b = float(input('Введіть число b: '))
c = float(input('Введіть число c: '))
res = (((b+25)**7)/(31))+(c**5/4)
print(res)