I am trying to get the last ID auto in MS SQL 2000

SELECT @@IDENTITY as ident FROM users

and i get nothing

i am using

SELECT MAX(id) as ident from users

what is the correct way to be shure to get at once the real last ID ?

thank you