A+B: Difference between revisions

Content added Content deleted
(→‎Solution: whitespace improvements)
m (→‎{{header|C}}: whitespace)
Line 35: Line 35:
scanf("%d%d", &a, &b);
scanf("%d%d", &a, &b);
printf("%d\n", a + b);
printf("%d\n", a + b);
}</lang>
}
<lang c>// Input file: input.txt
</lang>
<lang c>
// Input file: input.txt
// Output file: output.txt
// Output file: output.txt
#include <stdio.h>
#include <stdio.h>