using System;
namespace _022_编程题
{
class Program
{
static void Main(string[] args)
{
//三位水仙花数
//for (int i = 100; i <= 999; i++)
//{
// int ge = i % 10;
// int shi = (i / 10) % 10;
// int bai = i / 100;
// if (i == bai * bai * bai + shi * shi * shi + ge * ge * ge)
// {
// Console.WriteLine(i);
// }
//}
// 153, 370, 371, 407
//2325
//5 232
//2 23
//3 2
//2 0
//int n = Convert.ToInt32(Console.ReadLine());
//while (n != 0)
//{
// int ge = n % 10;
// Console.WriteLine(ge);
// n /= 10;
//}
int n = Convert.ToInt32(Console.ReadLine());
int sum = 0;
int cheng = 1;// 1 10 100 1000
while (n != 0)
{
int i = n % 10;//i就是遍历各个位上的数字
if (i != 0)
{
i *= cheng;//ge 1*
sum += i;
cheng *= 10;
}
n /= 10;
}
Console.WriteLine(sum);
}
}
}