#include<iostream>
using namespace std;
int main()
{
// Declare student count variable
int numStudents;
// Ask for number of students
cout << "How many students do you see? ";
cin >> numStudents;
// Repeat number of students
cout << "I see " << numStudents << " students too!\n";
return 0;
}