public Account(int initial)
-------- here has int
{
balance = initial;
}
static void Main()
{
Account acc = new Account(1000);
------ here has not int
...
}