Simple Equation

Let us now implement the following equation: $$ y = x^2$$

where $x = 2$


In [1]:
x = 2
y = x*x
print y


4