Python Evaluation

Sort by

recency

|

241 Discussions

|

  • + 0 comments
    #add comments so that the solution is not interpreted as a spam message
    var = input()
    eval(var)
    
  • + 0 comments
    var = input()
    r = eval(var[6:-1])
    print(r)
    
  • + 0 comments
    # solution is too short
    # add comments so that the solution is not interpreted as a spam message
    eval(input())
    
  • + 0 comments

    print(eval(input()[5:]))

  • + 0 comments

    One line solution:

    eval(input()) `