Jose,
Gianluca is correct. Your initial conditions should look something like this:
sol = NDSolve[{x'''[t] == y'[t] x[t],
y''[t] == -(1/(x[t]^2 + y[t]^2)), x[0] == 1, x''[0] == 1,
x'[0] == 1, y'[0] == 0, y[0] == 0}, {x, y}, {t, 0, 100}]
Regards,
Neil