#include <iostream>
using namespace std;

int f(int x = 0) {
	cout << "x:" << x << endl;
}
int main() {
	f();
	int f(int x = 1);
	f();
	return 0;
}