#include <iostream>
#include <string>

int main() {
    std::cout << std::stoi ("123") << '\n';
    std::cout << std::stoi ("abc") << '\n';
}