Hope SI100 finds you well.
Either it is true or not, Geekpy 🐍 will always be available for you as a python IDE on the web.
Loading editor...
# Geekpy Online Python IDE
def sum(a, b):
return (a + b)
a = int(input('Enter 1st number: '))
b = int(input('Enter 2nd number: '))
print('Sum of {} and {} is {}'.format(a, b, sum(a, b)))
Output will be shown here.