#!/usr/bin/python3

"""
ΑΣΚΗΣΗ 1
Αναθέστε στις μεταβλητές a, b, c, d τις τιμές 3, -121, 1.033 * 10 -33 και 'Python is fun' και τυπώστε τις τιμές τους στη μορφή:
The value of the vatiable a is 3, κ.ο.κ.
"""

def main():
	a=3
	b=123
	c=1.033 * 10 -33
	d="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}")

if __name__=="__main__":
	main()
