Submission #474039

#TimeUsernameProblemLanguageResultExecution timeMemory
474039mychecksedadEuklid (COCI20_euklid)C++17
4 / 110
1 ms204 KiB
#include<bits/stdc++.h>
using namespace std;
typedef long long int ll;
#define pb push_back
const int N = 1010, F = 1e9;



int main(){
	cin.tie(0); ios::sync_with_stdio(0);
	int t;
	cin >> t;
	while(t--){
		ll g, h;
		cin >> g >> h;
		ll b = g * ((h * h + g - 1) / g);
		cout << (b*h + g) << ' ' << b << '\n';
	}	

	return 0;
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...