8 lines
128 B
C++
8 lines
128 B
C++
#include <bits/stdc++.h>
|
|
|
|
using namespace std;
|
|
|
|
int main() {
|
|
cout << (260 + 220) / (12 + 20) << endl;
|
|
return 0;
|
|
} |