#include<stdio.h>
int main()
{
	int i;
	for(i=999;i>=100;i--){
		if(555555%i==0){
			printf("最大的约数:%d\n",i);
			return 0;
		}
	}
	return 0;
}