12 lines
232 B
C++
12 lines
232 B
C++
|
# include <iostream>
|
||
|
using namespace std;
|
||
|
|
||
|
int main(){
|
||
|
int yr_value, mn_value;
|
||
|
cout << "Enter Your Eage" << endl;
|
||
|
cin >> yr_value;
|
||
|
mn_value = 12 * yr_value;
|
||
|
cout << "It contains " << mn_value << " Months"<< endl;
|
||
|
return 0;
|
||
|
}
|