#include <stdio.h>
int ans;
int main() {
for (int i = 1; i < 10; i++) {
ans += i;
}
printf("%d", ans);
return 0;