以下程序输出的结果是:
#include "stdio.h"

void main()

{int a=12,b=13;

a=a+b;

b=a-b;

a=a-b;

printf("%d,%d",a,b);

}
出自:辽宁科技学院Python程序设计(专升本)