#include <iostream>
using namespace std;

struct A{
	int a=1;
	int f(){
		int a=2;
		return a;
	};
};

int main() {
	A a;
	cout<<a.f();
	return 0;
}