using System;
class MathTest
{
public int Square(int x)
{
return x*x;
}
}
class MathClient
{
public static void Main()
{
MathTest Math = new MathTest();
int x = Math.Square(10);
Console.WriteLine(x);
Console.ReadLine();
}
}
using System;
class MathTest
{
public int Square(int x)
{
return x*x;
}
}
class MathClient
{
public static void Main()
{
MathTest Math = new MathTest();
int x = Math.Square(10);
Console.WriteLine(x);
Console.ReadLine();
}
}