본문 바로가기
Beakjoon&프로그래머스/C언어

[백준/c언어]3046번 R2

by 현장 2021. 1. 22.

 

-코드

 

#include <stdio.h>

int main() {
int r1,r2;
int s;



scanf("%d %d", &r1, &s);

r2 = 2 * s - r1;

printf("%d", r2);

return 0;
}