Untitled

Anonymous
c_cpp
10/05/2023 11:39 AM
188 B
14
Indexable
#include <iostream>
using namespace std;

int main() {
  float A, B;  
  cin >> A >> B;
  cout << A / 2 << endl << A * B << endl << B / A;
}
Editor is loading...