fork download
  1. #include <bits/stdc++.h>
  2. #define int long long
  3. using namespace std;
  4.  
  5. int T;
  6. int k;
  7. double p;
  8. signed main()
  9. {
  10. ios::sync_with_stdio(0),cin.tie(0),cout.tie(0);
  11. cin >> T;
  12. while(T--)
  13. {
  14. cin >> k >> p;
  15. cout << k << "\n";
  16. }
  17. }
Success #stdin #stdout 0s 5284KB
stdin
3
5 1.00
1 0.50
2 0.30
stdout
5
1
2