// sweetie1.c -- a counting loop
#include <stdio.h>

int main(void)
{
	const int NUMBER = 22;
	// initialization
	int count = 1;

	while (count <= NUMBER)
	{
		// action
		printf("Be my valentine!\n");
		// update count
		count++;
	}
	return 0;
}