#! /usr/bin/python
# -*- coding: utf-8 -*-

#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
#
"""Algorithme du pivot de Gauss.
Auteur: Mettre votre nom
Date: 4-12-2025
"""

######################################
# Import des fonctions de maths      #
######################################

import math as m  
import random as r

######################################
# Preambule: exemples                #
######################################

print(r.randint(0,1000))        # affiche un nombre aleatoire entre 0 et 1000
a=input()                       # l'utilisateur saisi un nombre stocke dans a
print("tu as entré "+str(a))

######################################
# Algorithme 0:                      #
# Fonction Jeu de devinette          #
######################################


######################################
# Question 1:                        #
# Localiser les solutions            #
######################################


######################################
# Algorithme 1:                      #
# Tracer la courbe de f              #
######################################


######################################
# Algorithme 2:                      #
# Recherche de alpha                 #  
######################################


######################################
# Algorithme 3:                      #
# Recherche de beta                  #
######################################

