答えは \(N \times 10\) です.
#include <bits/stdc++.h> using namespace std; int main() { int N; cin >> N; cout << 10 * N << endl; }