#include <iostream>
#include <map>
#include <cmath>
using namespace std;

int main() {
	const std::map<std::string, float(*)(float)> math_parse = { 
    {std::string("SQRT"), &std::sqrt}};
}