You have a semicolon after int main that should not be there.
There are a few other errors in your code too. The carrot symbol (^) does not perform the power operation. You should just have PI * PI instead, or you can use pow(PI, 2) from the cmath library (that means you need to #include <cmath>)
Please post specific error messages when asking for help. If the people who wrote the compiler thought it important enough to give those error message, why would you not give the error messages to people trying to help?