import ctypes as ct
print "interger : ",ct.sizeof(ct.c_int())
print "float : ",ct.sizeof(ct.c_float())
print "double : ",ct.sizeof(ct.c_double())
print "character : ",ct.sizeof(ct.c_char())
print "for the equation ax^2+bx+c \n"
a=2
b=6
c=3
root=(b*b-4*a*c)**0.5
x1=(-b + root)/(2*a)
x2=(-b - root)/(2*a)
print "x1=",x1
print "x2=",x2
lower="l"
upper=lower.upper()
print upper