모 오픈 톡방에서 발견해서 공유합니다.
Color Scripter
Simple & Flexible Syntax HighLighter
colorscripter.com
<C++>
1
2
3
4
5
6
7
8
|
#include <bits/stdc++.h>
using namespace std;
int main(){
int a,b;
cin >> a >> b;
cout << a+b;
return 0;
}
|
cs |
<파이썬>
1
2
3
4
|
import sys
input=sys.stdin.readline
a,b=map(int,input().split())
print(a+b);
|
cs |
붙여놓고 보니 다른 블로그에서 썼던 양식이 이거구나 싶네
'코딩' 카테고리의 다른 글
[C++ 오류] cannot declare '::main' to be a global variable (0) | 2023.08.07 |
---|