#!/usr/bin/python3
"""
     Askisi 1
"""

def main():
        a=3
        b=-123
        c=1.033e-33
        d=None
        s='Python is fun'

        print("The value of variable a is", a)
        print("The value of variable a is", b)
        print("The value of variable a is", c)
        print("The value of variable a is", d)
        print("The value of variable a is", s)

if __name__== "__main__":
        main()
