#include <bits/stdc++.h> using namespace std; const unordered_set<string> errors = {"Division By Zero", "Type Mismatch", "Unbound Identifier"}; const unordered_set<string> binary = {"+", "-", "*", "/", "<", ">", "="}; map<string, string> value_map; int find(const vect...