Problem hidden
|This problem was hidden by Editorial Board member probably because it has incorrect language|version or invalid test data, or description of the problem is not clear.|

QUADRAD2 - Quadrados

Dado um inteiro N, determine quanto vale N2.

Entrada

A entrada é composta por um único caso de teste, composto por uma única linha que contém o inteiro N.

Saída

Seu programa deve produzir uma única linha, contendo o valor de N2.

Restrições

  • |N| ≤ 10000

Exemplo

Entrada
1

Saída
1

Entrada
4

Saída
16

Entrada
2

Saída
4


Adicionado por:Wanderley Guimarăes
Data:2009-02-07
Tempo limite:0.308s
Tamanho do fonte:50000B
Memory limit:1536MB
Cluster: Cube (Intel G860)
Linguagem permitida:Todas exceto: ASM64 CLOJURE ERL FSHARP JS-RHINO PERL6 PY_NBC SCALA TCL
Origem:Treino para OBI de 2006 - Fábio Moreira & Daniel Fleischman

hide comments
2019-08-11 17:38:12
Resolução em Java:
final Scanner s = new Scanner(System.in);
final int n = s.nextInt();
if(n <= 1000) {
System.out.println(n*n);
}
2019-05-24 13:36:02
#include <iostream>

/* run this program using the console pauser or add your own getch, system("pause") or input loop */
using namespace std;
int main(int argc, char** argv) {
int n;
cin>>n;
n=n*n;
cout<<n;
return 0;
}
2016-03-08 14:29:23
me chamem no whats
e no snap
2016-03-08 14:29:00
sou legal
2016-03-08 14:25:04
merda
2016-03-08 14:13:47
:)
2015-12-17 18:12:51
;-P
2015-02-14 22:58:36 Gustavo Beckhauser
ngm sim porta will
2015-02-10 19:40:51 William Máx Ribeiro Fróis
Fácil. Gastei 5 linhas de código
2014-08-15 22:11:57 João Frugis
MEU PROGRAMA FUNCIONA MAIS O SPOJ DIZ RESPOSTA ERRADA.
© Spoj.com. All Rights Reserved. Spoj uses Sphere Engine™ © by Sphere Research Labs.