Submission details
Task:Taxi
Sender:Häviö Life
Submission time:2015-09-30 18:43:06 +0300
Language:C++
Status:COMPILE ERROR

Compiler report

input/code.cpp:27:5: error: expected initializer before 'cout'
     cout<<"mind games"<<endl;
     ^
input/code.cpp:29:5: error: expected unqualified-id before 'return'
     return 0;
     ^
input/code.cpp:30:1: error: expected declaration before '}' token
 }
 ^

Code

#include <iostream>
#include <vector>
#include <stack>
#include <queue>
#include <algorithm>
#include <cmath>
#include <iomanip>
#include <unordered_set>
#include <stdio.h>
#include <string.h>
#include <unordered_map>
#include <fstream>
#include <set>
#include <map>

#define MOD 1000000007
#define ll long long
#define N (1<<50)
#define float double
#define str string

using namespace std;



int main()
    cout<<"mind games"<<endl;

    return 0;
}