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

18 lines
317 B
C++
Raw Normal View History

2024-06-04 08:40:07 +00:00
#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;
}