Untitled
unknown
c_cpp
2 years ago
217 B
7
Indexable
#include <iostream>
#include <string>
using namespace std;
int main()
{
int A;
int B;
cin >> A;
cin >> B;
cout << A / 2 << endl;
cout << A * B << endl;
cout << B / A << endl;
return 0;
}
Editor is loading...