2 条题解
- 1
信息
- ID
- 2203
- 时间
- 1000ms
- 内存
- 256MiB
- 难度
- 1
- 标签
- 递交数
- 160
- 已通过
- 47
- 上传者
#include<bits/stdc++.h> using namespace std; int main(){ int n,m,a; cin>>n>>m; a=n+m; if(a<=7){ cout<<a; }else if(a>7 and a<=14){ a-=7; cout<<a; }else if(a%7==0){ cout<<7; }else if(a>14){ a=a%7; cout<<a; } return 0; }