#!/usr/bin/python3


def main ():
	a=3
	b=-123
	c=1033*10
	d=-33
	e="Python is fun"
	print("The value of the variable a is ",a)
	print("The value of the variable b is ",b)
	print("The value of the variable c is ",c)
	print("The value of the variable d is ",c-d)
	print("The value if the variable e is ",e)
if __name__=="__main__":
	main()
