Cod sursa(job #2791055)
| Utilizator | Data | 30 octombrie 2021 00:26:19 | |
|---|---|---|---|
| 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;
int main(){
ifstream f("adunare.in");
ofstream g("adunare.out");
float a,b;
f>>a;
f>>b;
ofstream<<a+b;
return 0;
}