loading
open in
main.py
history
1
2
3
4
def
add
(x, y)
:
return
x+y print(add(
1
,
3
)) print(add(
"hello "
,
"world"
))