1a = 1 2b = 1 3while (a<10): 4 print ('Iteration',a) 5 a = a + 1 6 b = b + 1 7 if (b == 4): 8 break 9print ('While loop terminated')