题目:http://codeforces.com/problemset/problem/682/A
理解: 比较简单的一道题 思路很重要
#include<iostream>//*****连续的****
using namespace std;
int main()
{
int n,m;
while(cin>>n>>m)
{
long long int ans=;
for(int i=; i<=n; i++)
{
ans+=(i+m)/;//和最大
if(i>=)ans-=i/;//i>5 则多算了加数以下得
}
cout<<ans<<endl;
}
return ;
}