#include <iostream>
using namespace std;
int main() {
string founderName = "Chris";
int year;
year = 2019;
cout << "SamX Studios is founded in " << year << endl;
cout << "The only founder of the company is " << founderName << "." << endl;
year = 2020;
cout << year << " was when Corona-virus was destroying the whole world.";
}