Cod sursa(job #622423)
Utilizator | Data | 17 octombrie 2011 22:20:14 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.22 kb |
#include <iostream>
#include <cstdio>
#include <cstring>
using namespace std;
int main()
{
int a,b;
freopen("a+b.in","r",stdin);
freopen("a+b.out","w",stdout);
scanf("%d", &a);
scanf("%d", &b);
printf("%d",a+b);
}