diff --git a/squares.py b/squares.py new file mode 100644 index 0000000..b15a116 --- /dev/null +++ b/squares.py @@ -0,0 +1,8 @@ +len =input() +x =0 +len= int(len) +len = len+1 +while x < len: + p=x*x + print(p) + x=x+1 \ No newline at end of file