A Shortcut to What?
Question
Solution
Idea
Code
https://github.com/mendax1234/Coding-Problems/blob/main/kattis/shortcuttowhat/shortcuttowhat.c
Last updated
Last updated
#include <stdio.h>
int main()
{
long input;
long output;
scanf("%ld", &input);
output = (input + 5) * 3 - 10;
printf("%ld\n", output);
}