#include <iostream>
#include <stdio.h>

/*
 * Playing around with comments
 * Nothing too important but learned something for sure.
 * 
 */

int main (void) {

	std::cout << "/*";
	std::cout << "*/";
	std::cout << /* "*/"*/"; 
	std::cout << /* "*/" /* "/*" */;
	
	return 0;
}