bài 1 làm kiểu gì full đc v,tôi làm vậy được có 9 té
include <bits/stdc++.h>
using namespace std; long long x,y,z;; int main() { cin>>x>>y>>z; if(y>x||z>x) { cout<<-1; return 0; } else if((y+z)>x) cout<<(y+z)-x; else if((y+z)<=x) cout<<0; return 0; }
.