#include <bits/stdc++.h> using namespace std; int main() { int n,b=0; for(n=1;n<=100;n++) { b=n*10+2+b; } cout<<b; return 0; }