Blame view

P92351_en/S001-AC.cc 232 Bytes
Imanol-Mikel Barba Sabariego authored
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#include <iostream>

using namespace std;

int main()
{
	int a,b,div,res;
	cin >> a;
	cin >> b;

	div = a/b;
	res = a-(div*b);

	if(res < 0)
	{
		div = div - 1;
	}

	res = a-(div*b);
	cout << div << " " << res << endl;
	return 0;
}