340.
What is the obvious problem below

using System;
abstract class A
{
  abstract public int Rnd();
}
class B : A
{
  public int Rnd()
  {
    return new Random(1000).Next();
  }

  static void Main()
  {

  }
}

If you inheriting from an abstract class then any abstract method that you are overriding needs to be declared as override