print(None)
print(1)
print(1.1)
print("abc")
print((1, 2)) x = (1,2)
print(x[0]) print([1, 2, 3])
print(int(1))
print(int(1.2))
print(float(1))
print(float(1.2))
assert type(1 - 2) is int
assert type(2 / 3) is float
x = 1
assert type(x) is int
assert type(x - 1) is int
a = bytes([1, 2, 3])
print(a)
b = bytes([1, 2, 3])
assert a == b
try:
bytes([object()])
except TypeError:
pass
a = bytearray([1, 2, 3])
assert int() == 0
a = complex(2, 4)
assert type(a) is complex
assert type(a + a) is complex
assert repr(a) == '(2+4j)'
a = 10j
assert repr(a) == '10j'
a = 1
assert a.conjugate() == a
a = 12345
b = a*a*a*a*a*a*a*a
assert b.bit_length() == 109