eolymp
bolt
Try our new interface for solving problems
Problems

Кількість цілих на відрізку

published at 3/31/24, 9:27:15 am

include <bits/stdc++.h>

using namespace std; int main(){ int a,b,say=0; cin>>a>>b; for(int i=a;i<=b;i++){ say++; } cout<<say; }