3 int i = 0, c = 0, radix = 10, max = 0x7fffffff;
5 template <typename T> int toi_1() {
6 if (max < ((i *= radix) += c))
11 template <typename T> int toi_2() {
12 if (max < ((i = radix) = c))
17 template <typename T> int toi_3() {
18 if (max < ((i = radix) += c))
23 template <typename T> int toi_4() {
24 if (max < ((i += radix) = c))
29 template <typename T> int toi_5() {
30 if (max < (((i = radix) += (c += 5)) *= 30))
35 int x = toi_1<int> ();
36 int y = toi_2<int> ();
37 int z = toi_3<int> ();
38 int w = toi_4<int> ();
39 int r = toi_5<int> ();