#include <stdio.h>
void main()
{
int a,b;
scanf("%d,%d",&a,&b);
printf("%d",a+b);
}
不知道减少个变量会不会提高速度哪???
when i want to ask anyone,i will ask myself first.
#include <stdio.h>
void main()
{
int a,b;
scanf("%d,%d",&a,&b);
printf("%d",a+b);
}
不知道减少个变量会不会提高速度哪???