#include <stdio.h>
#include <stdlib.h>
#include <windows.h>
int main ()
{
	int a,b;
	a = 0;
	while (a<=400)
	{
		system ("cls");
		b = 1;
		while (b<=a)
		{
			printf(" ");
			++b;
		}
		printf("H");
		Sleep(100);
		++a;
	}
	system("pause");
	return 0;
}


========================================Talk is cheap, show me the code=======================================