CS1050–Lab 3Fall 2021Concepts to Practice•if, if/else•while•increment/decrement operators•Extend Prelab 3Submission InformationSubmit this assignment by following the instructions given by your TA.SUBMIT ONLY the .c file (no a.outor executable file is required).All of the lab assignments must be submitted before the end of the labusing the lab code given by the TA.Use the following submit command:mucs submit <class> <assignment_name> <filename>For example:mucs submit 1050 lab3 lab3.cDescriptionYou are to write a program that goes through all even integers from 2 through 50 in order from thegreatest integer down to the least integer.As you move through these integers, if the current integer isdivisible by 5, print “X”.If the current integer isdivisibleby 3, print “Y”.If the current integer is divisibleby both 5 and 3, print “XY”.If the current integer is divisible by neither 5 nor 3, print the integer.