其他分享
首页 > 其他分享> > P1421 小玉买文具

P1421 小玉买文具

作者:互联网

题目传送门

#include <bits/stdc++.h>

using namespace std;

int main() {
    int a, b;
    cin >> a >> b;
    int c = 19;
    int d = a * 10 + b;
    int e = d / c;
    cout << e << endl;
    return 0;
}

标签:文具,std,cout,19,int,P1421,传送门,main,小玉买
来源: https://www.cnblogs.com/littlehb/p/15706720.html