1000 A+B Problem

测试下csdn blog的代码显示

直接在submit里写的,没缩进

  1. //3469713_AC_0MS_292K
  2. #include <stdio.h>
  3. int main()
  4. {    
  5. int a,b;    
  6. scanf("%d %d",&a, &b);    
  7. printf("%d/n",a+b);    
  8. return 0;
  9. }

你可能感兴趣的:(1000 A+B Problem)