#include <iostream>
int main(int argc, char * argv[])
{
std::cout<<"Hello, world!"<<std::endl;
int a = 3.14;
return 0;
}