Submission #2867384


Source Code Expand

#include <bits/stdcpp.h>

using namespace std;
int main(){
  int a,b;
  cin >> a;
  cin >> b;
  if(a+b>9) cout << "error" << endl;
  else cout << a+b << endl;
}

Submission Info

Submission Time
Task A - Restricted
User sarugami
Language C++14 (GCC 5.4.1)
Score 0
Code Size 171 Byte
Status CE

Compile Error

./Main.cpp:1:25: fatal error: bits/stdcpp.h: No such file or directory
 #include <bits/stdcpp.h>
                         ^
compilation terminated.