Untitled
unknown
plain_text
3 years ago
150 B
4
Indexable
#include <iostream>
using namespace std;
int main()
{
int x1, x2;
cin >> x2 >> x1;
if (x2 - x1 > 0) cout << x2-x1;
else cout << "erorr";
}Editor is loading...
#include <iostream>
using namespace std;
int main()
{
int x1, x2;
cin >> x2 >> x1;
if (x2 - x1 > 0) cout << x2-x1;
else cout << "erorr";
}