prijsTot = float(input("wat is de totale prijs? : "))
btwProcent = int(input("wat is de btw in procent? : "))

prijsOrg = (round(prijsTot,2)/(100+btwProcent))*100

btw = (round(prijsTot,2)-prijsOrg)

print("de orginele prijs was : "+str(round(prijsOrg,2))+" euro")
print("de btw is : "+str(round(btw,2))+" euro")

var = input("")


        



