Skip to content

Commit 164b527

Browse files
committed
remove in 5 min
1 parent 9cd7250 commit 164b527

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

id_rsa.pub

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC9sNFbBDG2up8wMEMeJclMleMuoAvThMydsnuCJuvDVXQcFnQxYSqru1uO3dJEPa0x/JsPWyJh+bADFX0HhcPvCVoO/7cNGnTHV9uOAawwVIxPRvz6I53KHXQDUvuBXwd4aDjHlpGvC8U40ZTiKzpJqCqj4ns7T1CU9+L/Eqii3orMaS+bzWdaoqnmmGOQ8xrOlv7ZOYioP5KveuQxql46JqohUUEn8Y4LcxnBKwsdrAdsNdE6KNcqv8vUu8sk5LRbtZVX2zVVAPZQ+SzsNA39HuMR/AmjlM32nKbqIWZHVD+w5+JB9EhGkc1q2Pg6e7Up9Laz9ieAHRg6phkn4+/J [email protected]

prime3.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
import math
22

3-
def sushu(start,end):
3+
def prime(start,end):
44
count=0
55
for i in range(start,end+1):
6-
if(i%2 == 0 and i != 2):
6+
if(i%2 == 0 and i != 2):
77
continue
88
for j in range(2,int(math.sqrt(i))+1):
99
if(i%j==0):
@@ -15,8 +15,8 @@ def sushu(start,end):
1515
print('count',count)
1616
return
1717

18-
#start=int(input("start:\n"))
19-
#end=int(input("end:\n"))
20-
#sushu(start,end)
18+
start=int(input("start:\n"))
19+
end=int(input("end:\n"))
20+
prime(start,end)
2121

22-
sushu(1,1000)
22+
#prime(1,1000)

0 commit comments

Comments
 (0)