Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
89503 李谨睿 02买铅笔 C++ Accepted 1 MS 272 KB 157 2024-08-25 13:12:40

Tests(10/10):


Code:

#include <bits/stdc++.h> using namespace std; int main(){ int a,b,c,d,f,g; f=0; cin>>a>>b>>c>>d; f=a*10+b; g=c*10+d; cout<<g/f; return 0; }