Валерия Абдрахманова, 528 группа IfIf 1728
Андреева Елизавета, 522 IfIf 1810
nn1import sys
1import ast2import ast
n2import sysn
33
n4def ifif(program):n4def check_valid_python_code(text):
5    try:5    try:
n6        code = ast.parse(program)n6        parsed = ast.parse(text)
7        for n in ast.walk(code):7        for node in ast.walk(parsed):
8            if isinstance(n, ast.If):8            if isinstance(node, ast.If):
9                return True9                return True
10        return False10        return False
11    except SyntaxError:11    except SyntaxError:
12        return False12        return False
t13program = sys.stdin.read()t13input_text = sys.stdin.read()
14print(ifif(program))14print(check_valid_python_code(input_text))
Legends
Colors
 Added 
Changed
Deleted
Links
(f)irst change
(n)ext change
(t)op