#include <iostream>
using std::cout;
using std::endl;
class Test {
int a, b, c;
public:
void set(int _a, int _b, int _c);
void print();
};
inline void Test::set(int _a, int _b, int _c)
{
a = _a;
b = _b;
c = _c;
}
inline void Test::print()
{
cout << a << " " << b << " " << c << endl;
}
int main()
{
Test o;
o.set(13, 781, 9803);
o.print();
return 0;
}
/*
run:
13 781 9803
*/