Run id: 115601
Main.cc:12:15: warning: missing terminating " character
cout<<"Yes'<< endl;
^
Main.cc:12:9: error: missing terminating " character
cout<<"Yes'<< endl;
^
Main.cc: In function 'int main()':
Main.cc:7:23: error: 'sqrt' was not declared in this scope
for(i=2;i <=sqrt(n);i++);
^
Main.cc:9:32: error: break statement not within loop or switch
if(n%i==0) {cout<<"No";break;}
^
Main.cc:11:16: error: 'sqrt' was not declared in this scope
if(i>sqrt(n))
^
Main.cc:13:5: error: expected primary-expression before 'return'
return 0;
^