#include <iostream>
using namespace std;

int main() {
  int numDogs = 50;
  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";

}
