#include<iostream>
using namespace std;
int main()
{
    cout<<"hello nowcoder"<<endl;
    return 0;
}

error: 'cout' was not declared in this scope
error: 'endl' was not declared in this scope
using namespace std;


error: '::main' must return 'int'
int main()