def division(a,b,n): q=a//b a=a%b resultat=str(q)+"," for i in range (n): a=a*10 q=a//b a=a%b resultat=resultat+str(q) return resultat