using System;
//Write a method that divides two numbers (provided as parameters). Tip: you will need to use the modifiers public and static.
public class Methods
{
public static void Main()
int x = 2;
int y = 2;
int a = foo(x,y);
Console.WriteLine(a);
}
public static int foo(int x, int y)
return x/y;
}//write method foo here