1. Put the following code blocks in the correct order to create a program that will print the prime numbers between 1 and 100 (inclusive).🔗 for i in range( 2, 101): --- is_prime = True --- for j in range( 2, i): --- if i % j == 0: --- is_prime = False --- if is_prime: --- print(i, end=" ") 🔗