All pastes #2046930 Raw Edit

Mine

public cpp v1 · immutable
#2046930 ·published 2011-04-15 19:10 UTC
rendered paste body
#include <iostream>using namespace std;int cislo=572;int a;int main(){	while(cislo%10!=0){		a=cislo%10;		cout << a;		cislo-=a;		cislo/=10;	}	cin.get();	cin.get();}