#include <iostream>
using namespace std;

int main() {
  string RacerName;
  int CheckpointOne;
  int CheckpointTwo;
  int CheckpointThree;
  int CheckpointFour;

  cout << "Enter the racer's first name: ";
  cin >> RacerName;

  cout << "Enter the time (in minutes) at checkpoint 1: ";
  cin >> CheckpointOne;
  cout << "\nEnter the time (in minutes) at checkpoint 2: ";
  cin >> CheckpointTwo;
  cout << "\nEnter the time (in minutes) at checkpoint 3: ";
  cin >> CheckpointThree;
  cout << "\nEnter the time (in minutes) at checkpoint 4: ";
  cin >> CheckpointFour;
  
  cout << "\nTimes for " << RacerName << 
  	": CP1: " << CheckpointOne << " CP2: " << CheckpointTwo <<
  	" CP3: " << CheckpointThree << " CP4: " << CheckpointFour << '\n';

  return 0;
}