Submission #5497680


Source Code Expand

#include <iostream>
using namespace std;

int main(void)
{
  int h1, h2;
  cint >> h1 >> h2;
  count << h1 - h2;
  return 0;
}

Submission Info

Submission Time
Task A - 積雪深差
User tak_
Language C++14 (GCC 5.4.1)
Score 0
Code Size 135 Byte
Status CE

Compile Error

./Main.cpp: In function ‘int main()’:
./Main.cpp:7:3: error: ‘cint’ was not declared in this scope
   cint >> h1 >> h2;
   ^
./Main.cpp:8:3: error: ‘count’ was not declared in this scope
   count << h1 - h2;
   ^