Contact: aviboots(AT)netvision.net.il
40,855 questions
53,260 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 */