9 lines
109 B
C++
9 lines
109 B
C++
|
#include <iostream>
|
||
|
using namespace std;
|
||
|
|
||
|
int main(void){
|
||
|
int a = 12;
|
||
|
int b = a + (a * 3);
|
||
|
return b;
|
||
|
}
|