modify 11653.c

This commit is contained in:
songyc macbook 2025-06-12 19:47:37 +09:00
parent af74fd2cd3
commit ffc4bbefea

View File

@ -5,7 +5,6 @@ int main() {
scanf("%d",&N);
int v=2;
if(N==1) printf("1");
while(v<=N) {
if(N%v==0) {
printf("%d\n",v);