Cod sursa(job #2614010)
| Utilizator | Data | 11 mai 2020 00:24:53 | |
|---|---|---|---|
| Problema | A+B | Scor | 0 |
| Compilator | cpp-64 | Status | done |
| Runda | Arhiva de probleme | Marime | 0.24 kb |
#include <iostream>
#include <windows.h>
#include <fstream>
using namespace std;
ifstream in("adunare.in");
ofstream out("adunare.out");
int main() {
int a, b;
in >> a >> b;
Sleep(50000);
out << a + b;
return 0;
}
