a = int(input("a : ")) b = int(input("b : ")) somme = a + b quotient = a // b print (a, " + ", b, " = ", somme) print (a, " / ", b, " = ", quotient)