fork download
  1. #include<iostream>
  2. using namespace std;
  3. int main(){
  4.  
  5. int K; cin>>K;
  6. int S; cin>>S;
  7.  
  8. int ans = 0;
  9.  
  10. for(int A=0 ; A<=K ; A++){
  11. for(int B=0 ; B<=K ; B++){
  12. for(int C=0 ; C<=K ; C++){
  13.  
  14. if((A+B+C)==S){
  15. ans++;
  16. }
  17. }
  18. }
  19. }
  20.  
  21. cout<<ans;
  22.  
  23. return 0;
  24. }
Success #stdin #stdout 0.01s 5288KB
stdin
Standard input is empty
stdout
Standard output is empty