#include <iostream>
#include <string>
using namespace std;
class Integer
{
int nums;
char ch[40];
public:
Integer(int k);
Integer(string p);
void set(int x);
int get();
int isEven();
};
Integer::Integer(int k)
{
nums = k;
}
Integer::Integer(string p)
{
nums = stoi(p);
}
void Integer::set(int x) {
nums = x;
}
int Integer::get() {//멤버함수 구현
return nums;
}
int Integer::isEven() {
if (nums % 2 == 0) {
return 1;
}
}
int main() {
Integer n(30);
cout << n.get() << ' ';
n.set(50);
cout << n.get() << ' ';
Integer m("300");
cout << m.get() << ' ';
cout << m.isEven();
}