Cod sursa(job #2564440)
Utilizator | Data | 1 martie 2020 21:26:03 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp-64 | Status | done |
Runda | Arhiva de probleme | Marime | 0.19 kb |
#include<fstream>
using namespace std;
int main()
{
int A,B;
A=0 % 6;
ifstream C("adunare.in");
C>>A>>B;
ofstream D("adunare.out");
D<<A+B;
D.close();
}