#include <iostream>
using namespace std; // consider removing this line in serious projects
int main() {
cout<<"The C++14 Texas Ranger Program."<<endl;
char x[80] = "Walker Was Injured On The Job";
cout<<x<<endl;
char y[80] = "Walker Is Currently Blind.";
cout<<y<<endl;
char z[80] = "Walker Got His Sight Back.";
cout<<z<<endl;
	return 0;
}