꼬마 정민 (11382)

Created:

Baekjoon No.11382
A+B 문제에서 변수 하나만 더 사용하면 된다.

Bash

Bash
1
2
read a b c
echo $((a + b + c))

C

C
1
2
3
4
5
6
7
8
#include <stdio.h>

int main(void) {
	int a, b, c;
	scanf("%d %d", &a, &b, &c);
	printf("%d", a+b+c);
	return 0;
}

Node.js

JavaScript
1
2
let [a, b, c] = require("fs").readFileSync(0).toString().trim().split(" ").map(Number);
console.log(a + b + c);

PHP

PHP
1
2
3
4
<?php
	fscanf(STDIN, "%d %d", $a, $b, $c);
	echo $a + $b + $c;
?>

Python3

Python
1
2
a, b, c = map(int, input().split())
print(a+b+c)

Ruby

Ruby
1
2
a, b, c = gets.chomp.split().map {|i| i.to_i}
puts a+b+c