From a496ff81b9c63bffbbaaf2176f7170d27e022246 Mon Sep 17 00:00:00 2001 From: Artem Date: Mon, 27 Oct 2025 09:52:43 +0300 Subject: [PATCH] =?UTF-8?q?=D0=B8=D1=81=D0=BF=D1=80=D0=B0=D0=B2=D0=BB?= =?UTF-8?q?=D0=B5=D0=BD=20=D0=BE=D1=82=D1=87=D0=B5=D1=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- TEMA5/report.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/TEMA5/report.md b/TEMA5/report.md index 9a3b3a5..b2972ae 100644 --- a/TEMA5/report.md +++ b/TEMA5/report.md @@ -215,8 +215,8 @@ kandidat =chislo // 2 while kandidat > 1: if chislo%kandidat == 0: - print(chislo, ' имеет множитель ', kandidat) - break + print(chislo, ' имеет множитель ', kandidat) + break kandidat -= 1 else: print(chislo, ' является простым!')