From 4f604b753343eccde0ee593e58979aa473b94086 Mon Sep 17 00:00:00 2001 From: Felipe Alves Matos Date: Sun, 30 Oct 2022 21:07:18 -0300 Subject: [PATCH] Create 1005.py --- scripts/1005.py | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 scripts/1005.py diff --git a/scripts/1005.py b/scripts/1005.py new file mode 100644 index 0000000..1a40d78 --- /dev/null +++ b/scripts/1005.py @@ -0,0 +1,6 @@ +n1 = float(input()) +n2 = float(input()) + +m = (((n1 * 3.5) + (n2 * 7.5)) / 11) + +print("MEDIA = %0.5f" %m)