Cod sursa(job #780025)
Utilizator | Data | 19 august 2012 18:05:41 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | test_competition | Marime | 0.17 kb |
#include <stdio.h>
int main()
{
freopen("adunare.in", "r", stdin);
freopen("adunare.out", "w", stdout);
int a,b;
scanf("%d", &a);
scanf("%d", &b);
printf("%d\n", a+b);
}