// A simple C++ Program
#include <iostream>
using namespace std;

int main ()
{
	cout << "Programming is" << " great fun!";
	return 0;
}
