#include <algorithm>
#include <iostream>
#include <cstdlib>
#include <cstdio>
#include <cstring>
using namespace std;
int main()
{
//freopen("in.txt","r",stdin);
int a,b,c;
scanf("%d %d",&a,&b);
c=a+b;
if(c<0)
{
printf("-");
c=-c;
}
if(c>=1000000)
{
printf("%d,%03d,%03d",c/1000000,c%1000000/1000,c%1000);
}
else if(c>=1000)
{
printf("%d,%03d",c/1000,c%1000);
}
else
{
printf("%d",c);
}
return 0;
}
1001. A+B Format (20)
最新推荐文章于 2021-02-19 15:05:15 发布