diff --git a/html/search.ejs b/html/search.ejs
index 26a4f584..15f774fb 100644
--- a/html/search.ejs
+++ b/html/search.ejs
@@ -516,6 +516,11 @@ function isMathExpression(query) {
}
function evaluateMathExpression(expression) {
+ // twenyone
+ if (expression.replace(/\s+/g, '') === '9+10') {
+ return '21';
+ }
+
try {
return eval(expression);
} catch (error) {