When you want to display a number that is not a prime number
Table[a, {a, 1, 100}]
Please tell me how to subtract the lower list from the upper list
Select[Range[100], PrimeQ]
I think the function Complement will be of use to you.
Complement
Thank you.OK.I'll learn.