Write a Composer class that has three instance variables:
Add an additional class variable .count which counts the total number of instances created.
# Just finished writing the Composer class
Composer.count ➞ 0
c1 = Composer("Ludvig van Beethoven", 1770, "Germany")
Composer.count ➞ 1
c2 = Composer("Wolfgang Amadeus Mozart", 1756, "Austria")
c3 = Composer("Johannes Brahms", 1833, "Germany")
Composer.count ➞ 3
N/A