simple arithmetic using List to store the results
num1=int(input('Enter Number 1 \t: '))
num2=int(input('Enter Number 2 \t: '))
sum=num1+num2
diff=num1-num2
mul=num1*num2
div=num1/num2
arith=[sum,diff,mul,div]
print('The Sum is \t\t= \t', arith[0])
print('The Difference is \t= \t', arith[1])
print('The Product is \t\t= \t', arith[2])
print('The Division is \t= \t', arith[3])
num1=int(input('Enter Number 1 \t: '))
num2=int(input('Enter Number 2 \t: '))
sum=num1+num2
diff=num1-num2
mul=num1*num2
div=num1/num2
arith=[sum,diff,mul,div]
print('The Sum is \t\t= \t', arith[0])
print('The Difference is \t= \t', arith[1])
print('The Product is \t\t= \t', arith[2])
print('The Division is \t= \t', arith[3])