Run ID:93894

提交时间:2024-10-19 15:08:17

#include<iostream> using namespace std; int main(){ int a=3,b=5; int t; t=a; a=b; b=t; cout<<a<<" "<<b; }