#include <bits/stdc++.h> using namespace std;
int main()
{
long long s=0;
for (int x=1; x<=100; x=x+3)
{
s=s+x;
}
cout<<s;
return 0 ;
}
C28
2023-12-24 15:42:36
#include <bits/stdc++.h> using namespace std;
int main()
{
long long s=0;
for (int x=1; x<=100; x=x+3)
{
s=s+x;
}
cout<<s;
return 0 ;
}