#include <stdio.h>

int main(void) {
	// your code goes here
    int a,b,c;
    for(a=0;a<33;a++)
    for(b=0;b<=50;b++)
    for(c=0;c<100;c++)
    { 
     if((a+b+c)==100&&(3*a+2*b+0.5*c)==100)
       printf("%d%d%d\n");
    }
	return 0;
}
