
short Cnt;
short XCnt = 1;

main()
{
    puts("hello world");
    printf("hello #%d\n", Cnt++);
    printf("hello #%d\n", XCnt++);
}

