Ступеньков Валерий Олегович, 525 группа IfIf 1837
Елфимова Анна, 525 группа IfIf 2866
nn1import ast
1import sys2import sys
n2import astn
3text = sys.stdin.read()3txt = sys.stdin.read()
4try:4try:
n5    tree = ast.parse(text)n5    tr = ast.parse(txt)
6    found = False6    res = False
7    for node in ast.walk(tree):7    for node in ast.walk(tr):
8        if isinstance(node, ast.If):8        if isinstance(node, ast.If):
t9            found = Truet9            res = True
10    print(found)10    print(res)
11except:11except:
12    print(False)12    print(False)
Legends
Colors
 Added 
Changed
Deleted
Links
(f)irst change
(n)ext change
(t)op