#include<iostream>
#include<string>
using namespace std;
string a[] = { "zero","one","two","three","four","five","six","seven","eight","nine" };
int b[1001];
int main() {
int x=0,l,o=0;
string s;
cin >> s;
for (int i = 0; i < s.size(); i++) {
x += s[i]-'0';
}
while (x>0) {
l = x % 10;
b[o] = l;
o++;
x /= 10;
}
for (int i = o - 1; i >= 0; i--) {
cout << a[b[i]] << ' ';
}
return 0;
}
运用字符串与ascii码转换相加再对应字符串数组输出