function leDoTeclado(evento) {
if (evento.keyCode == cima) {
y = y - 10;
}if (evento.keyCode == baixo) {
y = y + 10;
}if (evento.keyCode == direita) {
x = x + 10;
}if (evento.keyCode == esquerda) {
x = x -10;
}
}