#include <stdio.h>

int main(void) {
	int i=1;
    while(i<=100)
    {
    printf("杨静怡,");
    i++;
    }
	return 0;
}
