Write a code for the function main, that does the steps belo…

Questions

Write а cоde fоr the functiоn mаin, thаt does the steps below.Make sure to apply the best practice recommendations we learned about. Missing this will cause point deductions. use a while loop which runs as long as a variable named stores a true value. inside the while loop, get three integer numbers from the user. if passing those inputs in that order to the function of the previous question results in a value that is -1, then make the loop stop without using break. Otherwise add that value to a running total. After the loop stops, check the running total, if it is more than 0, print it; if it is less than 0, print an error message, otherwise if it is 0, print "Wow". Call main at the end. Use conversion or casting functions as needed.Make sure not to press tab as this exits the exam page.