Documentation

GNU C++ Compiler
Compiler
G++
Name
GNU C++ Compiler
Language
C++
Program and version
g++ (Ubuntu 11.3.0-1ubuntu1~22.04.1) 11.3.0
Description
GNU C++ Compiler
Type
compiler
Flags1
-D_JUDGE_ -DNDEBUG -O2
Flags2
-D_JUDGE_ -DNDEBUG -O2
Extension
.cc
Status
Ok

P68688
#include <iostream>
using namespace std;

int main()
{
    cout << "Hello world!" << endl;
}
P57548
#include <iostream>
using namespace std;

int main()
{
    int a, b;
    cin >> a >> b;
    cout << a + b << endl;
}