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)