Functie bepaalSom aanvullen

Sign in to test your solution.
##### FUNCTIE DEFINITIES ###### def bepaalSom( .... , ..... ): # welke informatie krijgt de functie binnen? antwoord = ... # tel hier die getallen bij elkaar op ...... # return hier het antwoord #### HOOFDPROGRAMMA ##### invoer1 = input() getal1 = int(invoer1) invoer2 = # vraag hier om een tweede getal # verander invoer2 in een getal en sla op in getal2 som = bepaalSom( ..... ) # welke twee getallen geef je mee? print("De som is", ..... ) # welke variabele druk je af?
You can submit as many times as you like. Only your latest submission will be taken into account.
Sign in to test your solution.

  Python sandbox

This window allows you to run Python code without installing a thing. The code you write here is not automatically submitted to Dodona.

Test case being debugged