Perl script that has two modes. One is an adder and the other is a multiplier. The script should ask the user to input which mode it should follow (ADD or MULTIPLY). It then asks for two numbers, performs the appropriate operation, and prints the result. You can assume that only valid input will be provided to your script. Hint: You will likely use and if/else statements.