Ad

The method should multiply parameters (a and b).

I hope that it won't be so difficult.
public class Multiplication
{
    public int Multip(int a, int b)
    {
        return a * b;
    }
}