Add the_best_function.py

main
yellowmonarch 2023-10-17 17:49:44 +00:00
parent f0ba1a0f22
commit 5ba68b67e5
1 changed files with 14 additions and 0 deletions

View File

@ -0,0 +1,14 @@
def the_best_function(first_digit: int, second_digit: int) -> int:
"""This function takes 2 int arguments and returns their sum"""
return first_digit + second_digit
def main() -> None:
first = int(input())
second = int(input())
print(the_best_function(first, second))
if __name__ == "__main__":
main()