Python Program to find division of two integer numbers

Program

a = int(input('Enter number for a: '))
b = int(input('Enter number for b: '))
if b == 0:
	print("Division by 0 not possible")
else:
	div = a / b
	print('Division = ', format(div))

Output 1

Enter number for a: 23
Enter number for b: 0
Division by 0 not possible

Output 2

Enter number for a: 82
Enter number for b: 3
Division =  27.333333333333332