3046 R2 xxxx 0001-01-01 45 words One minute Contents 풀이: 코드: https://www.acmicpc.net/problem/3046 풀이: R2 = 2 * S - R1 코드: 1 2 3 4 5 6 7 8 #include <iostream> using namespace std; int main(){ int r, s; cin >> r >> s; cout << 2 * s - r << endl; return 0; } Please enable JavaScript to view the comments powered by Disqus.