Complete these tasks to reinforce what you learned in this module.
Add every even number from 1 to 10 and print exactly Sum of evens: 30.
i only when i % 2 == 0.using System;
class Program
{
static void Main()
{
// Loop to 10, adding only the even numbers
}
}