Documentation

Clang C++17 Compiler
Compiler
Clang++17
Name
Clang C++17 Compiler
Language
C++
Program and version
Ubuntu clang version 14.0.0-1ubuntu1
Description
Clang C++17 Compiler
Type
compiler
Flags1
-D_JUDGE_ -DNDEBUG -O2 -std=c++17
Flags2
-D_JUDGE_ -DNDEBUG -O2 -std=c++17
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;
}