#include <iostream>
int main()
{
setlocale(LC_ALL, "Russian");
double a, b, square, perimeter;
std::cout << "Введите a: ";
std::cin >> a;
std::cout << "Введите b: ";
std::cin >> b;
(На C++)
#include <iostream>
int main()
{
setlocale(LC_ALL, "Russian");
double a, b, square, perimeter;
std::cout << "Введите a: ";
std::cin >> a;
std::cout << "Введите b: ";
std::cin >> b;
(На C++)