#include using namespace std; int main() { int n; cin >> n; n %= 9; cout << (n ? n : 9) << '\n'; return 0; }