#!/usr/bin/python3
#Askisi 1
a,b,c,d=3,-123,1.033e-33,'Python is fun'

print(f'The value of a is {a}')
print(f'The value of b is {b}')
print(f'The value of c is {c}')
print(f'The value of d is {d}')
