Cod sursa(job #2606116)
Utilizator | Data | 27 aprilie 2020 00:12:17 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp-64 | Status | done |
Runda | Arhiva de probleme | Marime | 0.27 kb |
// ConsoleApplication1.cpp : This file contains the 'main' function. Program execution begins and ends there.
//
#include <iostream>
using namespace std;
int main()
{
float a, b;
cin >> a >> b;
float suma;
suma = a + b;
cout << suma;
}
//