#include <stdio.h> int main() { float a,b; while(scanf("%f%f",&a,&b)!=EOF) { printf("%f\n",a+b); } return 0;
[此贴子已经被作者于2016-11-1 16:54编辑过]