/******************************************************************************
Online C++ Compiler.
Code, Compile, Run and Debug C++ program online.
Write your code in this editor and press "Run" button to compile and execute it.
*******************************************************************************/
#include <iostream>
int main()
{
std::cout << "gcc " << __GNUC__ << ":" << __GNUC_MINOR__
<< " patch " << __GNUC_PATCHLEVEL__ << std::endl;
return 0;
}