0
已解决
胡景波
中级光能
中级光能
5439 质数(primep)
题目描述 Description
只有1和本身两个因数的自然数叫做质数。自然数2是所有质数中第一个质数,3是第二个质数,……,104729是第10000个质数,……
现在请你试着输出所有质数中的第m个质数到第n个质数(1<=m<=n<=10000)。
输入描述 Input Description
输入两个正整数m和n。
输出描述 Output Description
输出所有质数中的第m个质数到第n个质数,质数之间用空格隔开,每输出五个数换一行。
样例输入 Sample Input
3 10
样例输出 Sample Output
5 7 11 13 17 19 23 29
求思路