Run ID:50575

提交时间:2023-07-12 14:40:22

#include<iostream> using namespace std; int main(){ int s=0; for(int i=12;i<=1002;i+=10){ s+=i; } cout<<s; }