#include <iostream>
using namespace std;
int main()
{
short __time_stop = 3; //1
char hex = 'a'; //2
char oct = 'b'; //3
int nDigit = 256; //4
cout << __time_stop;
cout << hex;
cout << oct;
cout << nDigit ;
return 0;
}