Using two buttons to increase and decrease number

"static" is useless here:

static int stock = 20;

Why do you not print "stock" instead of copying its value to "plus"?

int plus = ++stock;