my/cpp/l2.cpp

12 lines
256 B
C++
Raw Normal View History

2026-05-28 02:34:11 +03:00
#include <iostream>
int main() {
int x;
std::cout << "Число " << std::endl;
std::cin >> x;
int x2;
std::cout << "Второе число " << std::endl;
std::cin >> x2;
int sum = x+x2;
std::cout << x << "+" << x2 << "=" << sum << std::endl;
}