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