#include <iostream>
using namespace std;
struct X {};
void f(X& x){
    cout<<"usual"<<endl;
}
void f(const X& x){
    cout<<"const"<<endl;
}


int main() {
	// your code goes here
	X x;
	const X cx;
	f(x);
	f(cx);
	return 0;
}