From 5ba68b67e58238288328810f4ef1b2d898744382 Mon Sep 17 00:00:00 2001 From: yellowmonarch Date: Tue, 17 Oct 2023 17:49:44 +0000 Subject: [PATCH] Add the_best_function.py --- the_best_function.py | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 the_best_function.py 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()