using System;
namespace ConsoleApplication_C_Sharp
{
class Test
{
int _n;
public Test(int n)
{
_n = n;
}
public void Show()
{
Console.WriteLine(_n);
}
}
class Program
{
static void Main(string[] args)
{
Test t1 = new Test(31);
t1.Show();
Test t2 = new Test(983);
t2.Show();
}
}
}
/*
run:
31
983
*/