Signed integers
Types for storing signed integers.Example
Other pieces of example codes:short y = -(1500 % 60);
long y = -(1512345 div 70);
int y = -(15123 div 70);
sbyte y = -(15 % 4);
You can find it in the following collections: integers | numbers | data types
Signed integers in another programming language: