Are there a mathematical function that takes the integer variable $x$ and uses a constant $k$ then,
it outputs $x$ when $x > k$
else outputs Zero
For example, when $k=5$ and,
when $x$ is given inputs $2, 3, 4, 5, 6, 7$ respectively,
It must output $0, 0, 0, 0, 6, 7$ respectively.
I want a purely mathematical equation for the function.
(Only using variables, arithmetic symbols and other functions such as the absolute function, but without using comparison operators)