3 solutions
- 1
Information
- ID
- 2404
- Time
- 1000ms
- Memory
- 256MiB
- Difficulty
- 1
- Tags
- (None)
- # Submissions
- 181
- Accepted
- 61
- Uploaded By
#include<bits/stdc++.h>
using namespace std;
int main()
{
int a,b;
cin>>a>>b;
int t=b/a;
if(b%a==0)
{
t--;
}
char c='A'+t;
cout<<c;
return 0;
}