Printing more info than find command gives out

Hi,
I am trying to find files that are more than a gig with this command

find . -size +1073741823c

and it just gives me the names of the files. How do i get it to give me the actual size of the files too?

---------- Post updated at 09:41 AM ---------- Previous update was at 09:37 AM ----------

I just answered my own question
do

 find . -size +1073741823c -exec ls -l {} \;

or
find path -condition1 -condition2 -ls

Better would be:

find . -size +1073741823c -exec ls -l {} +

Besides using many fewer calls to ls , the listings will be properly aligned.