#include<stdio.h>
int main(void)
{
int counter = 100000;
while(counter--) {
printf("Hello there\n");
}