Contact: aviboots(AT)netvision.net.il
41,243 questions
53,750 answers
573 users
#include <iostream> int main() { int n = 7658; while(n) { std:: cout << n % 10 << '\n'; n /= 10; } } /* run: 8 5 6 7 */