Advertisement
sissou123

Untitled

Sep 17th, 2024
131
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.31 KB | Source Code | 0 0
  1.  Online Python IDE
  2. OnlineIDE - Online Python IDE is a web-
  3.  
  4.  
  5. # Online Python - IDE, Editor, Compiler, Interpreter
  6.  
  7. def sum(a, b):
  8.     return (a + b)
  9.  
  10. a = int(input('Enter 1st number: '))
  11. b = int(input('Enter 2nd number: '))
  12.  
  13. print(f'Sum of {a} and {b} is {sum(a, b)}')
  14. for more :https://cuty.io/lAy24ocl
  15.  
  16.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement