python

QLxie2023 发表于 5个月前 · 关联问题 计算本金与利润之和

a,b,c = map(float,input().split())
o = c*(1+a)**b
o = round(o,2)
print(o)