#include <iostream>
#include <string>

int main()
{
	int i=0;
	float x=0.9;
	double y;
	bool yes = true; // false
	char a='a';
	{
	std::string word;
	}

	(std::cout << "Hello universe") << x << std::endl;
	return EXIT_SUCCESS;
}