From 7c43b8af9d11c28abc4fc7cc4cc474f80b85fcad Mon Sep 17 00:00:00 2001 From: stud203789 Date: Sat, 18 Apr 2026 10:26:09 +0300 Subject: [PATCH] =?UTF-8?q?=D1=8F=20=D1=82=D1=83=D1=82=D0=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- abc.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/abc.py b/abc.py index a51329e..a074624 100644 --- a/abc.py +++ b/abc.py @@ -1,2 +1,5 @@ def calculate_total(price, tax_rate): - return price * (1 + tax_rate / 100) \ No newline at end of file + return price * (1 + tax_rate / 100) + +if __name__ == "__main__": + print(calculate_total(1000, 20)) \ No newline at end of file