Python Compiler
import math a = 40; b = 25; c = 7; print("The numbers are a = %d, b = %d, c = %d " % (a, b, c)); if(a > b and a > c): print("a = %d is the biggest number" % a) elif(b > c): print("b = %d is the biggest number" % b) else: print("c = %d is the biggest number" % c)
OUTPUT
The numbers are  a = 40, b = 25, c = 7
a = 40 is the biggest number
×

Save as Private