/* No.830 日本人の9割は90% https://yukicoder.me/problems/no/830 */ #include using namespace std; int main() { ios::sync_with_stdio(0); cin.tie(0); int n; cin >> n; cout << (n * 10) << endl; }