#include <stdio.h>
int sum(int n){

}

int main(void) {
	int a,b;
    a = 10;
    b = sum(a);
    printf("1から%dまでの和は%d", a,b );
	return 0;
}
