Cod sursa(job #2457819)
Utilizator | Data | 18 septembrie 2019 19:34:52 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp-64 | Status | done |
Runda | Arhiva de probleme | Marime | 0.18 kb |
#include <iostream>
#include<fstream>
using namespace std;
ifstream f("cmmdc.in");
ofstream g("cmmdc.out");
int a,b,s;
int main()
{
f>>a>>b;
s=a+b;
g<<s;
}