#include <iostream>                        // Ex02
using namespace std;
int main () {
    long int x;
    x = 10000000000;
    unsigned short int y = -1;
    const int z = y + 3;
    z = 4;
}
