Submission #616028


Source Code Expand

include <iostream>

using namespace std;


int main(void)
{

  int a;
  cin >> a;

  int b = a / 25;

  cout << b << endl;
  
  return 0;
}

Submission Info

Submission Time
Task A - ニコニコ数
User nyamruru
Language C++ (GCC 4.9.2)
Score 0
Code Size 157 Byte
Status CE

Compile Error

./Main.cpp:1:1: error: ‘include’ does not name a type
 include <iostream>
 ^
./Main.cpp: In function ‘int main()’:
./Main.cpp:10:3: error: ‘cin’ was not declared in this scope
   cin >> a;
   ^
./Main.cpp:14:3: error: ‘cout’ was not declared in this scope
   cout << b << endl;
   ^
./Main.cpp:14:16: error: ‘endl’ was not declared in this scope
   cout << b << endl;
                ^