mirror of
https://git.sb/baoshuo/OI-codes.git
synced 2024-11-05 13:38:47 +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;
|
||
|
}
|