Cod sursa(job #1113397)
Utilizator | Data | 20 februarie 2014 16:17:46 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.16 kb |
#include<iostream>
#include<fstream>
using namespace std;
ifstream f("adunare.in");
ofstream out("adunare.out");
int main()
{int a,b;f>>a>>b;out<<a+b;}