import sys ASWD = input().split(';') def move(direction,x,y): if len(direction) <2 or direction[:1] not in ['A','S','W','D']: return (x,y) elif direction[1:].isdigit(): if direction[0:1] == 'A': x -= int(direction[1:]) if direction[0:1] == 'S': ...