Илья Федоров, 617 группа PatternFind 5475
llilyshkall PatternFind 6541
n1tar = input()n1s = input()
2pat = input()2pattern = input()
3position = -13ans = -1
4for i in range(len(tar) - len(pat) + 1):4for i in range(len(s) - len(pattern) + 1):
5    match = True5    check = True
6    for j in range(len(pat)):6    for j in range(len(pattern)):
7        if pat[j] != '@' and tar[i + j] != pat[j]:7        if pattern[j] != '@':
8            if s[i + j] != pattern[j]:
8            match = False9                check = False
9            break10                break
10    if match:11    if check:
11        position = i12        ans = i
12        break13        break
t13print(position)t14print(ans)
Legends
Colors
 Added 
Changed
Deleted
Links
(f)irst change
(n)ext change
(t)op