Swift Program to find the product of two integer numbers

Program

var a = 5
var b = 12
var mul = Int()
mul = a * b
print("Multiplication of two numbers: ", mul)

Output

$ swift multiply-two-numbers.swift
Multiplication of two numbers:  60