A+B: Difference between revisions

17 bytes added ,  14 years ago
Line 30:
<lang c>// Standard input-output streams
#include <stdio.h>
int main()
{
int a, b;
scanf("%d%d", &a, &b);
printf("%d\n", a + b);
return 0;
}</lang>
<lang c>// Input file: input.txt
Anonymous user