integer in Python

Integer, is a whole number, positive or negative, without decimals, of unlimited length.
```
x = -1
print(x)
```