#ifndef S0013_ROMAN_TO_INTEGER_HPP #define S0013_ROMAN_TO_INTEGER_HPP #include #include using namespace std; class S0013 { public: int romanToInt(string s); }; #endif