Exp()

Returns a number containing the base of a natural logarithm (e) raised to the specified power.  The return value is a double type.

Script: 

Sub Main
    Dim MyNumber As Integer
    MyNumber = 15
    MsgBox Exp(MyNumber)
End Sub

IDEAScript Language: