
def PGTtctaxe1():
    prixHT = float(input("Prix Hors Taxe? "))
    taux = float(input("Taux taxe? "))
    taxe = prixHT * taux
    prixTTC = prixHT + taxe
    print("==> Avec un prix HT de ", prixHT, " et un taux de ", taux, sep="")
    print("==> La taxe vaut ", taxe, " et le prix TTC vaut ", prixTTC, sep="")

PGTtctaxe1()