| 记录编号 | 512247 | 评测结果 | A | ||
|---|---|---|---|---|---|
| 题目名称 | 2977.简单的数论题 | 最终得分 | 100 | ||
| 用户昵称 | 是否通过 | 通过 | |||
| 代码语言 | C++ | 运行时间 | 0.000 s | ||
| 提交时间 | 2018-10-02 18:50:39 | 内存使用 | 0.31 MiB | ||
#include<cstdio>
#include<iostream>
#include<algorithm>
#include<cmath>
#include<cstring>
using namespace std;
unsigned long long a1,a2;
int main(){
freopen("easy-math.in","r",stdin);
freopen("easy-math.out","w",stdout);
scanf("%lld%lld",&a1,&a2);
printf("%lld",a1/a2);
return 0;
}