#include<iostream> using namespace std; class human { public: fanc():x(2),y(5){cout<<x*y<<endl;} private: int x; int y; }; int main() { human job; }