Skip to content

Instantly share code, notes, and snippets.

View keehyun2's full-sized avatar
😪
zzzz

Keehyun Park keehyun2

😪
zzzz
View GitHub Profile
a=input().split()
print(int(a[0])+int(a[1]))
import java.util.*;
public class Main{
public static void main(String args[]){
Scanner sc = new Scanner(System.in);
System.out.println(sc.nextInt() + sc.nextInt()); // 입력받은 변수를 저장없이 바로 출력
}
}
#include <iostream>
#include <string>
using namespace std;
int main()
{
int a, b;
cin >> a >> b;
cout << a + b << endl;
}
#define _CRT_SECURE_NO_WARNINGS // scanf 보안 경고로 인한 컴파일 에러 방지
#include <stdio.h>
int main()
{
int a, b;
scanf("%d %d", &a, &b); // 표준 입력을 받아서 변수에 저장
printf("%d\n", a + b); // 변수의 내용을 출력
return 0;
}
buildscript {
repositories {
jcenter()
}
}
plugins {
id "com.jfrog.bintray" version "1.7.3"
}
package kr.co.cyberline.grid;
import org.openqa.selenium.*;
import org.openqa.selenium.ie.InternetExplorerDriver;
import org.openqa.selenium.remote.RemoteWebDriver;
import org.openqa.selenium.remote.BrowserType;
import org.openqa.selenium.remote.DesiredCapabilities;
import org.testng.annotations.AfterTest;
import org.testng.annotations.BeforeTest;
SELECT test_function() AS id, @level AS level, @id, @loop_cnt
FROM (
SELECT @start_with := 0,
@id := 0,
@level := 0,
update
test_k a
left outer join(
select parent, floor(avg(progress)) as avg
from test_k
group by parent
) b on a.id = b.parent
set
a.progress = b.avg
where
package kr.co.cyberline;
import java.text.DateFormat;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.Iterator;
import java.util.List;
import java.util.Set;
import java.util.concurrent.TimeUnit;
BEGIN
DECLARE _id INT;
DECLARE _parent INT;
DECLARE CONTINUE HANDLER FOR NOT FOUND SET @id = NULL;
SET _parent = @id;