Untitled

 avatar
unknown
c_cpp
2 years ago
221 B
4
Indexable
#include <iostream>
#include <string>
using namespace std;

int main()
{
	double A;
	double B;

	cin >> A;
	cin >> B;
	cout << A / 2 << endl;
	cout << A * B << endl;
	cout << B / A << endl;

	return 0;

}
Editor is loading...