| 记录编号 | 513532 | 评测结果 | A | ||
|---|---|---|---|---|---|
| 题目名称 | 2977.简单的数论题 | 最终得分 | 100 | ||
| 用户昵称 | 是否通过 | 通过 | |||
| 代码语言 | C++ | 运行时间 | 0.000 s | ||
| 提交时间 | 2018-10-11 19:47:44 | 内存使用 | 0.32 MiB | ||
#include<iostream>
#include<cstdio>
using std::cin;
using std::cout;
using std::endl;
typedef unsigned long long THELONGESTINT;
int main(void)
{
freopen("easy-math.in","r",stdin);
freopen("easy-math.out","w",stdout);
THELONGESTINT a1,a2;
cin>>a1>>a2;
cout<<a1/a2;
return 0;
}