#include <iostream>
#include <string>
using namespace std;
class Strconv {
public:
void getInt(char *selfStr) {
int value = std::atoi(selfStr);
cout << value << "\n" << endl;
}
void getStr(int selfInt) {
string str = to_string(selfInt);
cout << str << "\n" << endl;
}
private:
char *selfStr;
int selfInt;
};
int main() {
Strconv strconv;
strconv.getInt("11");
strconv.getStr(11);
return 0;
}