Cod sursa(job #1121469)
| Utilizator | Data | 25 februarie 2014 12:55:59 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp | Status | done |
| Runda | Lista lui wefgef | Marime | 0.25 kb |
#include <fstream>
#include<iostream>
#include<string.h>
#include<stdio.h>
using namespace std;
ifstream fin("adunare.in");
ofstream fout("adunare.out");
int main()
{
int a,b;
fin>>a;
fin>>b;
fout<<a+b;
return 0;
}
