I ran the following:

select sum(bytes)/1024/1024/1024,tablespace_name from dba_free_space
where tablespace_name IN ('UNDOTBS1', 'USERS') group by tablespace_name;

SUM(BYTES)/1024/1024/1024 TABLESPACE_NAME
------------------------- ------------------------------
0.5606689453125 UNDOTBS1
3.44195556640625 USERS

How do I actually recover the indicated free space?

Thanks in advance.