ventilaar
/
twitter_zuil
Archived
1
Fork 0
This repository has been archived on 2021-06-10. You can view files and clone it, but cannot push or open issues or pull requests.
twitter_zuil/homework PROGA/pe_5_1.py

5 lines
96 B
Python

def som(getal1, getal2, getal3):
ret = getal1+getal2+getal3
return int(ret)
print(som(3,5,2))