Start: Apr, 17, 2017 10:00:00
Python程序设计基础培训第二次作业
End: Apr, 23, 2017 14:00:00
Time elapsed:
Time remaining:

Problem_ID: G
Result: Accepted
Time: 127ms
Memory: 21432kB
Author: shanzhenyu
In contest: 1086

#!/usr/bin/python
import math
a,b = map(int,raw_input().strip().split())
for i in range(a,b+1) :
	flag = 1
	for j  in range(2,int(math.sqrt(i)+1)):
		if i % j != 0:
			continue
		else:
			flag = 0
	if flag == 1:
		print i