mirror of
https://git.sb/baoshuo/OI-codes.git
synced 2024-11-05 10:38:54 +00:00
13 lines
165 B
C++
13 lines
165 B
C++
#include <bits/stdc++.h>
|
|
|
|
using namespace std;
|
|
|
|
int a, b, c;
|
|
|
|
int main() {
|
|
cin >> a >> b;
|
|
c = a * 10 + b;
|
|
cout << floor(c / 19) << endl;
|
|
return 0;
|
|
}
|