Accounts with zero posts and zero activity during the last months will be deleted periodically to fight SPAM!
#include <stdlib.h>void a(void);void b();int main(){ a(); b(); return 0;}void a(void){ _sleep(200); return;}void b(){ int i; for(i=1;i<10;i++) { a(); }}