#include <iostream>
using namespace std;

int main() {
  int numDogs = 50.5;
  int myNumDogs;

  // printing out the value of numDogs and text on one line.
  cout << "The record # of hot dogs eaten in 12 min is: "  << numDogs << "\n";
  
  // printing out a question and putting the answer into myNumDogs
  cout << "How many can you eat?";
  cin >> myNumDogs;
  
  // printing out text and your answer
  cout << "\nYou can eat " << myNumDogs << " hot dogs in 12 min.\n";

}
