#ifndef S0012_INTEGER_TO_ROMAN_HPP #define S0012_INTEGER_TO_ROMAN_HPP #include using namespace std; class S0012 { public: string intToRoman(int num); }; #endif