2413 - Busca na Internet
Esta página foi o terceiro link listado no seu site de busca predileto?
Last updated
Esta página foi o terceiro link listado no seu site de busca predileto?
Last updated
#include <stdio.h>
int main(){
int t;
scanf("%d", &t);
printf("%d\n", 4 * t);
return 0;
}#include <iostream>
using namespace std;
int main(){
int t;
cin >> t;
cout << 4 * t << endl;
return 0;
}let input = require('fs').readFileSync('/dev/stdin', 'utf8');
let lines = input.split('\n');
let t = parseInt(lines.shift());
console.log(4 * t);t = int(input())
print(4 * t)