#! /usr/bin/env python
from stat import *
#A comment
x=1 #Another
#A comment
x=1
y=2 #Final
#Another
y=2
echo "$x+$y"
#Final
print(str(x) +  + str(y))
ÿ