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