#845. 整数倒序输出

整数倒序输出

以下程序段的输出结果是({{ input(1) }} )

#include <bits/stdc++.h>        		
using namespace std;          
int main()                                		
{
     int a=56789;
     while(a)
     {
	     cout<<a%10;
	     a/=10;
     }
     return 0;
}