Lua Program to multiply two numbers

Program

io.write('Enter value of a: ')
local a = io.read("*n")
io.write('Enter value of b: ')
local b = io.read("*n")
print('Product: ', a * b)

Output

Enter value of a: 98
Enter value of b: 4
Product:        392