#include 
                  int main()
                  {
                    int i=1024;
                    for(;i;i>>=1)
                    { //it mean i=i/2^1  , and when i = 0 the loop will end 
                    printf("hello,world\n");
                    }
                    return 0;
                  }