Write a multi-purpose application. The first line of the input is the name of an operation; the lines after it are that operation's own inputs. Carry out the operation and print its result.
odd_num_check - reads an integer; prints yes if it is odd, else no.perfect_square_check - reads a non-negative integer; prints yes if it is a perfect square, else no.vowel_check - reads a line of text; prints yes if it contains at least one vowel (a, e, i, o, u, in either case), else no.divisibility_check - reads an integer and prints one of divisible by 2 and 3, divisible by 2, divisible by 3, or not divisible by 2 and 3.palindrominator - reads a line of text and prints the text followed by its reverse, with the repeated middle character written only once. For example abc gives abcba.simple_interest - reads the principal amount and the number of years, both integers. The rate is 5% per year if the number of years is less than 10, and 8% otherwise. Print the simple interest, rounded to the nearest whole number.For any other operation name print Invalid Operation.
Write a complete program: read the input with input() and print the result with print().
Input
odd_num_check
7
Output
yes