Given the following interface:
```csharp
public interface voice
{
void yelling();
}
```
Create two classes, **Dog** and **Cat**, which implement this interface.
- You should also create one object for each class and the objects call the yelling method.
>Note:
Dog yells in “Bark Bark”, and Cat yells in “Meow Meow”