20250505 baekjoon
This commit is contained in:
parent
0dd18e8856
commit
dd81517a49
11
Baekjoon/c/1000.c
Executable file
11
Baekjoon/c/1000.c
Executable file
@ -0,0 +1,11 @@
|
|||||||
|
#include <stdio.h>
|
||||||
|
|
||||||
|
int main() {
|
||||||
|
|
||||||
|
int a, b, n;
|
||||||
|
scanf("%d %d",&a, &b);
|
||||||
|
n = a + b;
|
||||||
|
printf("%d", n);
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
8
Baekjoon/c/2557.c
Executable file
8
Baekjoon/c/2557.c
Executable file
@ -0,0 +1,8 @@
|
|||||||
|
#include <stdio.h>
|
||||||
|
|
||||||
|
int main() {
|
||||||
|
|
||||||
|
printf("Hello World!");
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
7
Baekjoon/js/1000.js
Executable file
7
Baekjoon/js/1000.js
Executable file
@ -0,0 +1,7 @@
|
|||||||
|
const fs = require("fs");
|
||||||
|
const n = fs.readFileSync("/dev/stdin").toString().split(" ");
|
||||||
|
|
||||||
|
const a = parseInt(n[0]);
|
||||||
|
const b = parseInt(n[1]);
|
||||||
|
|
||||||
|
console.log(a+b);
|
||||||
1
Baekjoon/js/2557.js
Executable file
1
Baekjoon/js/2557.js
Executable file
@ -0,0 +1 @@
|
|||||||
|
console.log("Hello World!")
|
||||||
1
Baekjoon/python/1000.py
Executable file
1
Baekjoon/python/1000.py
Executable file
@ -0,0 +1 @@
|
|||||||
|
print(sum(map(int, input().split())))
|
||||||
1
Baekjoon/python/2557.py
Executable file
1
Baekjoon/python/2557.py
Executable file
@ -0,0 +1 @@
|
|||||||
|
print("Hello World!")
|
||||||
Loading…
x
Reference in New Issue
Block a user