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: 128ms
Memory: 21432kB
Author: 13566300713
In contest: 1086

#!/user/bin/python
# -*- coding: UTF-8 -*-
a,b= map(int, raw_input().strip().split())
for i in range ( a,b+1 ) :
    flag =1
    for j in range ( 2, i-1) :
        if i % j ==0:
            flag=0
            break
        
    
    if flag==1:print i