Sprite.move(int x, int y);
this function moves the sprite in either direction, so you could say
using namespace sf;
int changeX = 0;
int changeY = 0;
and then when you poll for events in the game loop
if (isKeyPressed(Keyboard::A)) {
changeX = -2;
} else if (isKeyPressed(Keyboard::D) {
changeX = 2;
} else {
changeX = 0;
} if (isKeyPressed(Keyboard::W) {
changeY = -2;
} else if (isKeyPressed(Keyboard::S)) {
changeY = 2;
} else {
changeY = 0;
}
and when your updating
Sprite.move(changeX, changeY);