#include <iostream>
using namespace std;
int fun(long a, long b = 1) {
return a << b;
}
int fun(int a, char b = 'z') {
return b - a;
}
int fun(float a, float b = 0) {
return a * b;
}
int main() {
cout << fun(1L) << fun('x') << fun(2e0f);
return 0;
}
I2luY2x1ZGUgPGlvc3RyZWFtPgp1c2luZyBuYW1lc3BhY2Ugc3RkOwogICAgCmludCBmdW4obG9uZyBhLCBsb25nIGIgPSAxKSB7CiAgICByZXR1cm4gYSA8PCBiOwp9CiAgICAKaW50IGZ1bihpbnQgYSwgY2hhciBiID0gJ3onKSB7CiAgICByZXR1cm4gYiAtIGE7Cn0KICAgIAppbnQgZnVuKGZsb2F0IGEsIGZsb2F0IGIgPSAwKSB7CiAgICByZXR1cm4gYSAqIGI7Cn0KICAgIAppbnQgbWFpbigpIHsKICAgIGNvdXQgPDwgZnVuKDFMKSA8PCBmdW4oJ3gnKSA8PCBmdW4oMmUwZik7CiAgICByZXR1cm4gMDsKfQoK