Created
February 28, 2020 14:47
-
-
Save Sofiullah-Iqbal-Kiron/e99773c93ab29b6218b7ab2c9c0cbf83 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
///Accepted.(28-Feb, 2020.) | |
#include<iostream> | |
#include<cstdlib> | |
#define START int main(){ | |
#define END system("PAUSE");return 0;} | |
using namespace std; | |
START | |
int N, A, B; | |
cin >> N >> A >> B; | |
cout << 2*N*A*B << endl; | |
END |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment