#include<bits/stdc++.h>using namespace std;class yuan{ public: //属性 int t; //行为 int f() { return t*t; }};int main(){ yuan c1; c1.t=3; cout<<c1.f()<<endl; return 0; }