Created
November 11, 2016 13:22
-
-
Save atrisovic/296e3ba9c7b822479fe14958e1615354 to your computer and use it in GitHub Desktop.
Pavle
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
namespace ConsoleApplication1 | |
{ | |
class Program | |
{ | |
static void Main(string[] args) | |
{ | |
//ulazni podaci | |
int d = int.Parse(Console.ReadLine()); | |
int s = int.Parse(Console.ReadLine()); | |
//ono sto treba da se izracuna | |
int a = d * s; | |
//izlaz | |
Console.WriteLine(a); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment