Create a class called Dog with an overloaded bark() member function:
Dog
bark()
bark(n: Int) displays bark repeated n times to the console.
bark(n: Int)
bark
n
bark(n: Int, say: String) displays the contents of say repeated n times to the console.
bark(n: Int, say: String)
say