myMultiply = function( x, y ) { return x * y; }; a = myMultiply( 100, 2 ); print( a );