Create the User class that has two methods: __init__ and user_information. The __init__ method should define four attributes: name, surname, age and country, while user_information should print the following message:
{name} {surname} is {age} years old and lives in {country}.
Name, surname, age, and country will be provided as input. Process input, create an instance of the class, and call the user_information method.