#include <ctime>
#include <iostream>
#include <iomanip>

using namespace std;

int main() {
	tm tmb = { 5, 6, 7, 8, 9, 10 };
	
	mktime(&tmb);
	
	for(const auto i : { "%%", "%n", "%t", "%Y", "%EY", "%y", "%Oy", "%Ey", "%C", "%EC", "%G", "%g", "%b", "%h", "%B", "%m", "%Om", "%U", "%OU", "%W", "%OW", "%V", "%OV", "%j", "%d", "%Od", "%e", "%Oe", "%a", "%A", "%w", "%Ow", "%u", "%Ou", "%H", "%OH", "%I", "%OI", "%M", "%OM", "%S", "%OS", "%c", "%Ec", "%x", "%Ex", "%X", "%EX", "%D", "%F", "%r", "%R", "%T", "%p", "%z", "%Z" } ) {
		cout << i << "\t|\t\"" << put_time(&tmb, i) << "\"\n";
	} 
}