#include <iostream>
using namespace std;
int prod(int a, int b) {
return a * b;
}
int main(){
cout << prod(10, 20) << endl;
return 0;
}
Output-
200
class Solution { public int [] countOppositeParity ( int [] nums ) { // approach 1 - checks every pair int n = n...
No comments:
Post a Comment