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