You are viewing a single comment's thread. Return to all comments →
if __name__ == "__main__": entry_value, exit_value = map(int, input().split(' ')) polynom = input() p_function_text = 'lambda x:' + polynom p_function = eval(p_function_text) print(p_function(entry_value) == exit_value)
Seems like cookies are disabled on this browser, please enable them to open this website
Input()
You are viewing a single comment's thread. Return to all comments →