A user on the chat asked how could he make something that would cap when it gets a specific value like 20. Then the behavior would be as follows:
$f(...)=...$
$f(18)=18$
$f(19)=19$
$f(20)=20$
$f(21)=20$
$f(22)=20$
$f(...)=20$
He said he would like to perform it with a regular calculator. Is it possible to do this?