先
#include <iostream>
再
using namespace std;
然後
int main(){ int x, y, k; while(cin>>x>>y) { while(x%y) { k=x%y; x=y; y=k; } cout << y << endl; }}結束