20250505 baekjoon

This commit is contained in:
notalentprogrammer 2025-05-05 21:52:00 +09:00
parent 0dd18e8856
commit dd81517a49
6 changed files with 29 additions and 0 deletions

11
Baekjoon/c/1000.c Executable file
View 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
View File

@ -0,0 +1,8 @@
#include <stdio.h>
int main() {
printf("Hello World!");
return 0;
}

7
Baekjoon/js/1000.js Executable file
View 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
View File

@ -0,0 +1 @@
console.log("Hello World!")

1
Baekjoon/python/1000.py Executable file
View File

@ -0,0 +1 @@
print(sum(map(int, input().split())))

1
Baekjoon/python/2557.py Executable file
View File

@ -0,0 +1 @@
print("Hello World!")