#32711: 太可怕了 為甚麼會全部輸入後才一起輸出


P2006950413 (說不得)


#include<bits/stdc++.h>
using namespace std;

int main()
{
    int n;
    ios::sync_with_stdio(false);
    cin.tie(0);
    cin>>n;
    
    while(n--)
    {
        
        int d,l;
        cin>>d>>l;
        cout<<d<<"\n";
    }
    return 0;