Using mathematical operators and assignment operators in one step x = x+ 1 == x+= 1 x = x-1 == x -= 1 x = x2 == x= 2 x = x / 2 == x /= 2 x = x % 2 == x %= 2

counter++ to do counter = counter + 1