# -*- coding: utf-8 -*-
# La trigonométrie
print("************************************************************")
print("   hypoténuse est le côté « qui sous-tend » l'angle droit   ")
print()
print("sin base = base / hypoténuse    sin coté = coté / hypoténuse")
print("cos base = coté / hypoténuse    cos coté = base / hypoténuse")
print("tan base = base / coté          tan coté = coté / base")
print("cotan    =   1  / tan           tan      =   1  / cotan")
print("     hypoténuse = racine de base carré + coté carré")
print()
print("           sin base               sin coté         ")
print("      --------------------    -------------------- ")
print("      cos base | tan base     cos coté | tan coté  ")
print()
print("           cos base                cos coté")
print("      --------------------    -------------------- ")
print("      sin coté | cotg coté    cos base | tan base  ")
print()
print("               base                   coté         ")
print("      --------------------    -------------------- ")
print("      hypoténuse| cos coté   hypoténuse| sin coté  ")
print("                | sin base             | cos base  ")
print()
print("              coté                   base         ")
print("     --------------------    -------------------- ")
print("        base   | tan coté       coté  | tan base  ")
print("               | cotan base           | cotan cote")
print()
print("           base * coté  hypoténuse² * sin 2B  base")
print(" surface = -----------  --------------------  ----")
print("                2                4             2")
print()
print("                ___________________")
print("              √hypoténuse² * base²")
print()
print("	                      _____     ___1____")
print("	        hypoténuse = √b²+c²     tan|cotg")
print()
print(" _________")
print("√Périmètre=(Périmètre*hypoténuse)(Périmètre*base)(Périmètre*coté")
print()
print("       Périmètre = hypoténuse + base + ccoté")
print("                   -------------------------")
print("                        2")
print()
print("------------------------------------------------------------------")
print()
print("Avec un sextant devant un batiment la hauteur en mètre se calcul :")
print("             ____en Mètres__________________________")
print("             Distance  |   tan de l'angle en minutes")
print()
print("******************************************************************")
print()
bye = (input ("                                            Entrer pour Sortir...!"))
