9 lines
130 B
C++
9 lines
130 B
C++
#include <iostream>
|
|
|
|
using namespace std;
|
|
|
|
int main() {
|
|
cout << 9 * 9 / 3 << endl;
|
|
printf("%d",2);
|
|
return 0;
|
|
} |