#Cut and paste the code below into this trinket
def check_simple(n):
  is_simple = True
  for i in range(2,n):
    if(n%i==0):
      is_simple = False
  if (is_simple):
    print(n)
  
for i in range(2,100):
  check_simple(i)
    