#include <stdio.h>

int main(void) {
	// your code goes here
    int sum=0,i=0;
    while(i<=100)
    { printf("%d",sum); 
      i++; 
    }
	return 0;
}
