Declare / Implement class Country, which represents a
country with a name, a population,
and an area.
__init__() to take clients' datais_larger() that takes two Country objects population_density() that returns__str__ that returns a string representation 
canada = Country('Canada', 34482779, 9984670) usa = Country('United States of America', 313914040, 9826675)
canada.is_larger(usa) and print the result about which
country has larger area than the other country.