From 4d779ac212fd21dff8b42c13c234857af7928bd6 Mon Sep 17 00:00:00 2001 From: stud203799 Date: Tue, 14 Apr 2026 18:27:15 +0300 Subject: [PATCH] =?UTF-8?q?=D0=B8=D1=81=D0=BF=D1=80=D0=B0=D0=B2=D0=B8?= =?UTF-8?q?=D0=BB=20=D0=B2=D1=8B=D0=B2=D0=BE=D0=B4=20=D1=82=D0=B5=D0=BA?= =?UTF-8?q?=D1=81=D1=82=D0=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tasks_on_python/N18_intersection_massive.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks_on_python/N18_intersection_massive.py b/tasks_on_python/N18_intersection_massive.py index a9ee1e8..5e363d5 100644 --- a/tasks_on_python/N18_intersection_massive.py +++ b/tasks_on_python/N18_intersection_massive.py @@ -10,7 +10,7 @@ def intersec_mass(a: list, b: list): return im -print("Введите два массива для поиска пересечения") +print("Введите два массива через пробел для поиска пересечения") a = input().split() b = input().split() print(intersec_mass(a, b))