diff --git a/the_best_function.py b/the_best_function.py new file mode 100644 index 0000000..dfd53bb --- /dev/null +++ b/the_best_function.py @@ -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()