#include <string>
#include <iostream>

using namespace std;

int main () {
    int i;
    string a = "15";

    i = stoi(a);
    cout << i;
}