fork download
  1. #include <iostream>
  2. #include <algorithm>
  3. // sort(시작점 ㅡ ,끝점), max({A,B}), min({A,B}) << 이 정도 소트는 날먹..
  4.  
  5. using namespace std; //그냥 적으셈 일단 .. 안하면 귀찮아짐 으응..
  6.  
  7. int main(void) {
  8. // cin , cout 자료형을 알아서
  9. // scanf가 두배 정도 더 빠름
  10. // 그래서.. "ios_base::sync_with_stdio" cin의 검사를 빼서 더 빠름, 스캔f보다 0.001초 빠름
  11. ios_base::sync_with_stdio;
  12. cin.tie(NULL);
  13. cout.tie(NULL);
  14.  
  15. int a,b;
  16. cin >> a >> b;
  17. cout << a << ' ' << b;
  18. //차이가 없음.
  19.  
  20. return 0;
  21. }
Success #stdin #stdout 0s 5300KB
stdin
12 12
stdout
12 12