#include <stdio.h>

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