Complete these tasks to reinforce what you learned in this module.
Write a method Area that takes two int parameters and returns their product. Call it with 3 and 5 and print exactly Area: 15.
static int Area(int w, int h) { return w * h; }, then interpolate the result.using System;
class Program
{
// Write the Area method here
static void Main()
{
// Call it with 3 and 5 and print the result
}
}