Submission #7993501


Source Code Expand

#include <iostream>
using namespace std;

int main() {
  int a, b, c;
  string s;
  cin >> a;
  cin >> b >> c;
  cin >> s;
  cout << a + b + c << " "s << s << endl;
  return 0;
}

Submission Info

Submission Time
Task PracticeA - Welcome to AtCoder
User niba1122
Language C (Clang 3.8.0)
Score 0
Code Size 193 Byte
Status CE

Compile Error

./Main.c:1:10: fatal error: 'iostream' file not found
#include <iostream>
         ^
1 error generated.