# Run via time command to see execution time! # number^2 until number > 50 number = 1 while number < 50: number += number print(number)