Write a Python program to create a class Car
with attributes for make and model. Write a method full_name
to return the make and model of the car concatenated as a single string.
Example 1:
Input: car = Car('Toyota', 'Camry')
Output: 'Toyota Camry'
Example 2:
Input: car = Car('Honda', 'Civic')
Output: 'Honda Civic'