From c31bf58a998c87eef6689ecf15b7c7fd1985f04d Mon Sep 17 00:00:00 2001 From: SiluyanovD Date: Mon, 17 Nov 2025 06:48:58 +0000 Subject: [PATCH] =?UTF-8?q?=D0=97=D0=B0=D0=B3=D1=80=D1=83=D0=B7=D0=B8?= =?UTF-8?q?=D1=82=D1=8C=20=D1=84=D0=B0=D0=B9=D0=BB=D1=8B=20=D0=B2=20=C2=AB?= =?UTF-8?q?/=C2=BB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- calculator.py | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 calculator.py diff --git a/calculator.py b/calculator.py new file mode 100644 index 0000000..8c253a9 --- /dev/null +++ b/calculator.py @@ -0,0 +1,10 @@ +a=int(input("1 цифра: ")) +c=input("Выберите способ вычисления(+ или *): ") +b=int(input("2 цифра: ")) +if c=="+": + print("Ответ: ", a+b) +elif c=="*": + print("Ответ: ", a*b) +else: + print("Вы ввели неправильное значение!!!") + \ No newline at end of file