commit f844879eb1506acbc097039ba3530e297590badf Author: BikchurinaA Date: Mon Nov 10 02:44:31 2025 +0300 first commit diff --git a/Bikchurina.py b/Bikchurina.py new file mode 100644 index 0000000..25c4d05 --- /dev/null +++ b/Bikchurina.py @@ -0,0 +1,16 @@ +a = int(input("Введите 1 число ")) +b = int(input("Введите 2 число")) +x = (input("Введите арифметический знак")) + + +if x == '+': + result = a+b +elif x == '*': + result = a * b +else: + print(" error ") + result = None + + +if result is not None: + print("Результат:", result) \ No newline at end of file