
If you use a 0-sized picture mode then it is easy to set the table (10,10) relative to the origin of the picture mode, it's a bit more involved to position the picture mode at the edge of the page as you have to account for the usual margins and offsets.
\documentclass[a4paper]{article}
\begin{document}
\setlength\unitlength{1cm}
\noindent\vbox to 0pt{%
\vspace{\dimexpr \paperheight-\topskip-\topmargin-1in
-\headheight-\headsep}
\noindent\hspace*{\dimexpr-\oddsidemargin-1in}%
\begin{picture}(0,0)
\thicklines\linethickness{5pt}
\put(10,10){%
\begin{tabular}[b]{lrr}
Reinforcement(A)&Concrete(B)&slab formwork(D)\\ \hline \\
kg & m3 & m2 \\
B-man hours & B man hours & B man-hours \\
blah blah & blah blah & blah blah \\
\end{tabular}}
\put(0,0){\line(1,0){10}}
\put(0,0){\line(0,1){10}}
\put(0,0){\line(1,1){10}}
\end{picture}
\vss}
\end{document}
\documentclass{...}and ending with\end{document}. – Peter Jansson Mar 14 at 8:42