#include <iostream>
using namespace std;

int main() {
	for (int i = 1; i <= 5; ++i)
	{
		printf("\nI can count to %d",i);
	}
	return 0;
}