答案1
欢迎来到 TeX.SX!这是一个简单的答案,但是,您应该专门检查 TeX.SX 上的加法/乘法/等的命令和包。
\documentclass{article}
\begin{document}
\[
\begin{array}{rr}
A & B \\
+\ 3 & 7 \\
\hline
9 & A
\end{array}
\]
\end{document}
答案2
我会做:
\documentclass{article}
\begin{document}
\begin{center}\renewcommand{\tabcolsep}{.3ex}\renewcommand{\arraystretch}{.9}
\begin{tabular}{ccc}&$A$&$B$\\ +&$3$&$7$\\ \hline&$9$&$A$
\end{tabular}\end{center}
\end{document}