Question from the C++ test

What is the output of the following C++ code? #include <iostream> using namespace std; int main() { int a = 10, b = 20, c = 30; cout << a + b + c; return 0; }