Get your own Python server Result Size: 625 x 565
x
 
x = int(1)
y = int(2.8)
z = int("3")
print(x)
print(y)
print(z)
1
2
3