Login into your Salesforce account using your administrator credentials.
From the Service Setup choose Developer Console
To see the number of seats run the query below:
Select count() from User where UserType = 'Standard' and IsActive = true.
Number of seats is displayed.
To see the list of users run the query below:
Select Email from User where UserType = 'Standard' and IsActive = true