Contact: aviboots(AT)netvision.net.il
40,849 questions
53,254 answers
573 users
#include <iostream> using std::cout; using std::endl; int main() { cout.setf(std::ios::showpos); cout << 31 << ' ' << -31 << endl; return 0; } /* run: +31 -31 */