# -*- coding: utf-8 -*-
"""
Created on Tue Sep 26 10:28:24 2017
@author: vmahout
"""
import math
print("Pi est la valeur : " ,math.pi)
Nb = input("Quelle décimale voulez-vous extraire ?")
Nb = int(Nb)
Decimal = math.pi - math.trunc(math.pi)
Decale = Decimal * 10**(Nb-1)
Decimabis = Decale- math.trunc(Decale)
Madecimale = math.trunc(Decimabis*10)
print("La ",Nb,"ième décimale de Pi est :", Madecimale)