Swift Program to print integer value

Program

var a : Int
a = 40
print("Value of integer 'a': ", a)

Output

Value of integer 'a':  40