Zeros and Ones

  • [deleted]Challenge Author
    + 14 comments

    had we used

    n,m,p = map(int, input().split(' '))
    

    This shows RUNTIME ERROR. Now while we use this code:

    nums = tuple(map(int, input().split(' ')))
    

    This runs perfectly. What difference will this be making during runtime?