标签: python python-3.x
我需要知道如何使用Python 3处理此文件:
Python 3
120 11 10213 312 10 3
我会使用C使用以下代码执行此操作:
C
scanf("%d", &t); while (t--) { scanf("%d %d", &a, &b); gcd(a, b); }