1. What I learned
How to write multiple outputs on a single line
To write down multiple outputs at once, continue with ‘«’. ex) cout « “Hello” « “World;
2. Code
#include <iostream>
using namespace std;
int main(void) {
int a, b;
cin >> a >> b;
cout << a*b << "\n";
return 0;
}
3. Result
Runtime : 0 ms, Memory usage : 2016 KB
(Runtime can be different by a system even if it is a same code.)