#include "Int.H" #include int main() { SInt<4, noop> i (2); SInt<4, sat> j (27); SInt<5, sat> k (j); SInt<5, noop> l (j); std::cout << int(i) << '\t' << int (j) << '\n'; }