Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
47222 yuzhengxun 【例33.3】 凑数 C++ 无测评数据 0 MS 0 KB 173 2024-05-12 19:03:39

Tests(0/0):


#include<bits/stdc++.h> using namespace std; int main() { int x,y; cin>>x>>y; for(int i=1000;i>=2;i--){ if(i%x!=0&&i%y!=0){ cout<<i; return 0; } } }