Check of vigilance:
What will Number equal at the end?
```
contract Math {
uint8 public Number = 255;
function add() public { Number = Number + 1; }}
```
What will Number equal at the end?
```
contract Math {
uint8 public Number = 255;
function add() public { Number = Number + 1; }}
```