サンプルコード 素数の計算 素数は1と自分自身以外で割り切れない数です import math max=int(input('最大数')) s=list() for i in range(1,max+1): f=True sq=... サンプルコード