اضف رقمين من الكيبورد و اجمعهما
def add(a, b): return a + b add(input("First number: "), input("Second number: ")) A: You can use the input function to get the input from the user. The input function returns a string, so you need to convert it to an int. You can use the int function to do this. def add(a, b