-D_JUDGE_ -D_GLIBCXX_DEBUG -O2 -Wall -Wextra -Werror -Wno-sign-compare -std=c++11
-D_JUDGE_ -D_GLIBCXX_DEBUG -O2 -std=c++11
.cc
#include <iostream>
using namespace std;
int main() {
cout << "Hello world!" << endl;
}
#include <iostream>
using namespace std;
int main() {
int a, b;
cin >> a >> b;
cout << a + b << endl;
}