Arithmetic operators:

+ - * / %

Assignment shortcuts:

health += 10;
health -= 20;
speed *= 2f;

Increment and decrement:

coins++;
coins--;

Ternary operator:

string state = health > 0 ? "Alive" : "Dead";