Runtime error in GS08 problem

Describe your bug

Screenshot

Additional info

You have written A, B = input().split, instead it should be A, B = input().split(). See that split() is a function, so you have to call it.

1 Like