#include <iostream> // missing "#"
int za_warudo(); //missing declaration
using namespace std // error-producing colon
main()
{
za_warudo(); //there's no reason for a function for such a small code
return 0;
}
void za_warudo() //this should be zaWarudo; underscores ftl
{
cout<<"Wrryyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy"<<endl; /*print? terrible, terrible*/
}