Cod sursa(job #476701)
| Utilizator | Data | 12 august 2010 08:46:54 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.26 kb |
// infoarena.ro - 0001 A+B
// Code written by Dr.Optix [[email protected]]
#include <stdio.h>
int main(void)
{
int a, b;
freopen("adunare.in", "r", stdin);
freopen("adunare.out", "w", stdout);
scanf("%d %d", &a, &b);
printf("%d", a+b);
return 0;
}