# Creating integers
num1 = 10
num2 = -20
num3 = 0
# Outputting the integers
print(num1)
print(num2)
print(num3)10
-20
0num1`, `num2`, and `num3` and assign them the values `10`, `-20`, and `0`, respectively. Integers are a type of numeric data in Python that represent whole numbers, both positive and negative, as well as zero.print` function to output the values of the integers to the console.