Currently there are no IJVM instructions to multiply two numbers. You can however use existing instructions to multiply top two numbers on stack. Assume that two positive numbers are placed on the stack. Write IJVM code that will remove these top two words, multiply and put their product back on the stack. You are allowed to use existing IJVM instructions only. Include appropriate comments to explain your code.