문제
URL : https://codeup.kr/problemsetsol.php?psid=23
소스코드
// 정수 입력받아 2 곱해 출력
// input : 1024
// output : 2048
#include <iostream>
using namespace std;
int main()
{
int n;
cin >> n;
cout << (n << 1);
return 0;
}
URL : https://codeup.kr/problemsetsol.php?psid=23
// 정수 입력받아 2 곱해 출력
// input : 1024
// output : 2048
#include <iostream>
using namespace std;
int main()
{
int n;
cin >> n;
cout << (n << 1);
return 0;
}