11 lines
199 B
Python
11 lines
199 B
Python
from math import *
|
|
|
|
taxeA = float(input())
|
|
taxeN = float(input())
|
|
prixA = float(input())
|
|
|
|
prixAHT = round(prixA + prixA*(-taxeA / 100))
|
|
prixN = prixAHT + prixAHT*(taxeN / 100)
|
|
|
|
print(round(prixN,2))
|