a = 10 b = 0b10 c = 0o10 d = 0x10 e = 1.0 print(a) print(b) print(c) print(d) print(e)