fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. int a, b;
  5. printf("Hay nhap a, b:\n");
  6. scanf("%d %d",&a,&b);
  7. printf("%8d\n",a);
  8. printf("+\n");
  9. printf("------------\n");
  10. printf("%8d\n",a+b);
  11. return 0;
  12. }
  13.  
Success #stdin #stdout 0.01s 5276KB
stdin
797 7280
stdout
Hay nhap a, b:
     797
+
------------
    8077