This repository has been archived on 2024-10-24. You can view files and clone it, but cannot push or open issues or pull requests.
NG_2024_Stanislav_Mykhailenko/Lesson_1/Task_2/main.cpp

20 lines
309 B
C++
Raw Normal View History

2024-06-04 08:40:07 +00:00
#include <iostream>
2024-06-11 07:48:26 +00:00
using namespace std;
2024-06-04 08:40:07 +00:00
int main()
{
float firstNumber = 0;
float secondNumber = 0;
2024-06-11 07:48:26 +00:00
cout << "Enter the first number: ";
cin >> firstNumber;
2024-06-04 08:40:07 +00:00
2024-06-11 07:48:26 +00:00
cout << "Enter the second number: ";
cin >> secondNumber;
2024-06-04 08:40:07 +00:00
2024-06-11 07:48:26 +00:00
cout << firstNumber + secondNumber << endl;
2024-06-04 08:40:07 +00:00
return 0;
}