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
Stanislav Mykhailenko 94ae06e975
Add Lesson 1
2024-06-04 11:40:07 +03:00

17 lines
317 B
C++

#include <iostream>
int main()
{
float firstNumber = 0;
float secondNumber = 0;
std::cout << "Enter the first number: ";
std::cin >> firstNumber;
std::cout << "Enter the second number: ";
std::cin >> secondNumber;
std::cout << firstNumber + secondNumber << std::endl;
return 0;
}