Cod sursa(job #1190422)
Utilizator | Data | 25 mai 2014 12:51:08 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | test123_it | Marime | 0.19 kb |
#include <iostream>
#include <fstream>
using namespace std;
fstream in("adunare.in");
ofstream out("adunare.out");
int main()
{
long long int a; long long int b; in>>a>>b; out<<a+b;
}