/** @file 830.cpp @title No.830 日本人の9割は90% - yukicoder using namespace std; typedef long long LL; #define ALL(obj) (obj).begin(), (obj).end() #define REP(i, N) for (int i = 0; i < (N); ++i) int main() { int N; cin >> N; cout << N*10 << endl; return 0; }