On the planet Mongo, each year has 15 months and each month has 26 days.
Write a function
$\verb#compute_mongo_age(birthYear, birthMonth, birthDay, currentYear, currentMonth, currentDay)#$that residents of Mongo can use to compute their age. It should take 6 positive integers as input: the person's birthdate (year, month from 1 to 15, and day from 1 to 26) and the current date (year, month from 1 to 15, and day from 1 to 26), and return a float of the age of the person in years.
For example, $\verb#print(compute_mongo_age(2879,8,11,2892,2,21))#$ should print $\verb#12.6256410256#$, the age (in Mongo years) on the 21st day of the 2nd month of the year 2892, of a person who was born on the 11th day of the 8th month of the year 2879.
Reminder: your assignment will be graded on the following:
The text box or code describes your planning, such as pseudocode of your algorithm or programming decisions like what datatypes to use.
The code runs without error and solves the specified problem.
The text box explains how the code was tested, such as the test cases used or your debugging process.
Clarity of the code, including inline comments and descriptive variable names.