import math

a = math.pi
print("a =", a)

b = math.sqrt(25)
print("b =", b)

c = math.cos(b)
print("c =", c)

d = math.log(19952.623149688796, 10)
print("d =", d)

e = a//1+b*d**c-math.sqrt(-1+b/a)%10  # operátor precedencia
print("e =", e)

f = (((a//1)+(b*(d**c)))-(math.sqrt(((-1)+(b/a)))%10))
print("f =", f)

g = 123456789123456789123456789 + 876543210876543210876543210
print("g =", g)

h = 3.14159265358979323846264338327950288419716939937510
print("h = {0:26.25}".format(h))

i = 10 + 0x10 + 0b10
print("i =", i)
