from __future__ import division
from scipy import *              # Load SciPy

x = 64                        # This is an input value, and you can change it if you want

y = 1                            # What does this do?
while y < x:                     # What does this do?
    y = y*2                      # What does this do?

print 'What is the relationship between', x, 'and', y, '?'


