Run ID:100409

提交时间:2024-12-07 17:20:50

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