#include <stdio.h>

int main(void) {
	int n=0,sum=0;
	
	do{
		n = n + 1;
		sum = sum + n;
	}while(sum<100);
	printf("最小値は%d",n);
		
	return 0;
}
