Write a program using pythoon to print N prime Numbers using while loop starting from 0, and take the input of X from the user code example
Example: python calculate prime numbers until numer
until = 20
[n for n in range(2, until) if all(n % m != 0 for m in range(2, n-1))]