#!/usr/bin/python3

def main():
	#Immutable scalars
	a = 3
	b = -123
	c = 1.033e-33
	d = 'Python is fun'
	s = 'Python is fun'
	print(f"The value of the variable a is {a}")
	print(f"The value of the variable b is {b}")
	print(f"The value of the variable c is {c}")
	print(f"The value of the variable d is {d}")
	print(f"The value of the variable s is {s}")
if __name__=="__main__":
	main
