Updated. /JL

This commit is contained in:
Jan Lerking
2025-03-18 13:22:40 +01:00
parent 6402cde8b5
commit 259d67b015
4 changed files with 23 additions and 6 deletions

View File

@@ -1,5 +1,5 @@
def sum(tal1, tal2):
def sum(tal1: int, tal2: int) -> str:
return str(f"Resultat {tal1} + {tal2}: {tal1 + tal2}")
resultat = sum(5, 3)